32 lines
786 B
Plaintext
32 lines
786 B
Plaintext
---
|
|
import Layout from "@/layouts/layout.astro";
|
|
import Navbar from "@/components/navbar/index.astro";
|
|
import Footer from "@/components/footer.astro";
|
|
import Pattern from "@/components/ui/pattern.astro";
|
|
import Profile from "@/components/profile.astro";
|
|
import About from "@/components/sections/about.astro";
|
|
import TechStack from "@/components/tech-stack.astro";
|
|
import Experience from "@/components/sections/experience/experience.astro";
|
|
---
|
|
|
|
<Layout title="Yoga Pangestu">
|
|
<Navbar />
|
|
|
|
<main
|
|
aria-label="Main content"
|
|
class="mx-auto min-h-[calc(100vh-120px)] max-w-3xl"
|
|
>
|
|
<Pattern className="h-14" />
|
|
<Profile />
|
|
<Pattern />
|
|
<About />
|
|
<Pattern />
|
|
<TechStack />
|
|
<Pattern />
|
|
<Experience />
|
|
<Pattern />
|
|
</main>
|
|
|
|
<Footer />
|
|
</Layout>
|