-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e04689a
commit 91e8a18
Showing
5 changed files
with
184 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<template> | ||
<main> | ||
<header> | ||
<nav class="nav"> | ||
<div>Tech at Weburz</div> | ||
<ol class="nav-items"> | ||
<li> | ||
<NuxtLink href="/">Home</NuxtLink> | ||
</li> | ||
<li> | ||
<NuxtLink href="/blog">Blog</NuxtLink> | ||
</li> | ||
<li> | ||
<NuxtLink href="/foss-projects">FOSS Projects</NuxtLink> | ||
</li> | ||
<li> | ||
<NuxtLink href="/tech-stack">Technology Stack</NuxtLink> | ||
</li> | ||
</ol> | ||
</nav> | ||
</header> | ||
<slot /> | ||
<footer> | ||
<small> | ||
Weburz LLC © 2024-{{ new Date().getFullYear() }} · Made with | ||
open-source ❤️ | ||
</small> | ||
</footer> | ||
</main> | ||
</template> | ||
|
||
<style lang="scss"> | ||
.nav { | ||
display: flex; | ||
justify-content: space-between; | ||
.nav-items { | ||
display: flex; | ||
gap: 1.75rem; | ||
a { | ||
text-decoration: none; | ||
} | ||
} | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<template> | ||
<h1>Blogs</h1> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<template> | ||
<h1>FOSS Projects</h1> | ||
<p>All our Free and Open-Source (FOSS) projects built with love at Weburz!</p> | ||
<ol> | ||
<li> | ||
<a href="https://weburz.github.io/repoforge">RepoForge</a> | ||
</li> | ||
<li> | ||
<a href="https://weburz.github.io/burzpress">BurzPress</a> | ||
</li> | ||
</ol> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,24 @@ | ||
<template> | ||
<h1>Hello World!</h1> | ||
<header> | ||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas viverra. | ||
</header> | ||
<section> | ||
<!-- Example blog --> | ||
<div> | ||
<h1>Lorem ipsum dolor sit amet</h1> | ||
<p> | ||
Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, | ||
consectetur, adipisci velit | ||
</p> | ||
<hr /> | ||
<span>Somraj Saha</span> | ||
<span>{{ | ||
new Date().toLocaleDateString("en-IN", { | ||
day: "2-digit", | ||
month: "short", | ||
year: "numeric", | ||
}) | ||
}}</span> | ||
</div> | ||
</section> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
<template> | ||
<h1>Technology Stack</h1> | ||
|
||
<p> | ||
These are the list of FOSS technologies and software we use and self-host at | ||
Weburz for our operations. Some of the listed tools might not be in use or | ||
will gradually be phased out! | ||
</p> | ||
|
||
<h2>Programming Languages</h2> | ||
|
||
<ol> | ||
<li> | ||
<a href="https://www.python.org" target="_blank">Python</a> | ||
</li> | ||
<li> | ||
<a href="https://www.typescriptlang.org" target="_blank">TypeScript</a> | ||
</li> | ||
<li> | ||
<a href="https://go.dev" target="_blank">Go</a> | ||
</li> | ||
</ol> | ||
|
||
<h2>Databases</h2> | ||
|
||
<ol> | ||
<li> | ||
<a href="https://www.postgresql.org" target="_blank">PostgreSQL</a> | ||
</li> | ||
</ol> | ||
|
||
<h2>DevOps and CI/CD</h2> | ||
|
||
<ol> | ||
<li> | ||
<a href="https://www.terraform.io" target="_blank">Terraform</a> | ||
</li> | ||
<li> | ||
<a href="https://github.com/actions/runner" target="_blank"> | ||
GitHub Actions Runner | ||
</a> | ||
</li> | ||
<li> | ||
<a href="https://azure.microsoft.com" target="_blank">Microsoft Azure</a> | ||
</li> | ||
<li> | ||
<a href="https://www.vultr.com" target="_blank">Vultr</a> | ||
</li> | ||
</ol> | ||
|
||
<h2>Web and API Framework</h2> | ||
|
||
<ol> | ||
<li> | ||
<a href="https://nuxt.com" target="_blank">Nuxt 3</a> | ||
</li> | ||
<li> | ||
<a href="https://fastapi.tiangolo.com" target="_blank">FastAPI</a> | ||
</li> | ||
</ol> | ||
|
||
<h2>Business Suite</h2> | ||
|
||
<ol> | ||
<li> | ||
<a href="https://plane.so" target="_blank">Plane</a> | ||
</li> | ||
<li> | ||
<a href="https://js.wiki" target="_blank">Wiki.js</a> | ||
</li> | ||
<li> | ||
<a href="https://umami.is" target="_blank">Umami</a> | ||
</li> | ||
</ol> | ||
|
||
<h2>Documentation</h2> | ||
|
||
<ol> | ||
<li> | ||
<a href="https://starlight.astro.build" target="_blank">Starlight</a> | ||
</li> | ||
<li> | ||
<a href="https://rapidocweb.com" target="_blank">RapiDoc</a> | ||
</li> | ||
</ol> | ||
|
||
<h2>Developer Tools</h2> | ||
<ol> | ||
<li> | ||
<a href="https://www.debian.org" target="_blank">Debian</a> | ||
</li> | ||
<li> | ||
<a href="https://learn.microsoft.com/en-us/windows/wsl" target="_blank"> | ||
Windows Subsytem for Linux (WSL) | ||
</a> | ||
</li> | ||
<li> | ||
<a href="https://www.docker.com" target="_blank">Docker</a> | ||
</li> | ||
</ol> | ||
</template> |