Files
portfolio/components/about_page.templ
2025-02-13 08:35:26 +01:00

13 lines
486 B
Plaintext

package components
templ AboutPage() {
@rootLayout() {
<main class="w-full h-full flex flex-col gap-0 items-center justify-center">
<section class="flex flex-col gap-6">
<h1 class="text-3xl">About Me</h1>
<p class="text-base">I am a software engineer with a passion for web development. I have experience with a variety of technologies including React, Node.js, and MongoDB. I am always looking to learn new things and improve my skills.</p>
</section>
</main>
}
}