Skip to content

Commit

Permalink
chore: add a bunch of pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarmos-san committed Oct 17, 2024
1 parent e04689a commit 91e8a18
Show file tree
Hide file tree
Showing 5 changed files with 184 additions and 1 deletion.
46 changes: 46 additions & 0 deletions src/layouts/default.vue
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 &copy; 2024-{{ new Date().getFullYear() }} &middot; 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>
3 changes: 3 additions & 0 deletions src/pages/blog.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<template>
<h1>Blogs</h1>
</template>
12 changes: 12 additions & 0 deletions src/pages/foss-projects.vue
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>
23 changes: 22 additions & 1 deletion src/pages/index.vue
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>
101 changes: 101 additions & 0 deletions src/pages/tech-stack.vue
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>

0 comments on commit 91e8a18

Please sign in to comment.