mirror of
https://github.com/liyunze-coding/RythonDev.git
synced 2026-09-22 07:44:26 +00:00
12 lines
383 B
Text
12 lines
383 B
Text
---
|
|
import NavBar from "../components/sections/NavBar.astro";
|
|
import Layout from "../layouts/Layout.astro";
|
|
import ProjectsComponent from "../components/sections/ProjectsComponent.svelte";
|
|
---
|
|
|
|
<Layout title="Projects" description="View what projects RythonDev has made">
|
|
<NavBar />
|
|
<div id="what-i-do" class="mt-10 pb-20">
|
|
<ProjectsComponent />
|
|
</div>
|
|
</Layout>
|