mirror of
https://github.com/liyunze-coding/RythonDev.git
synced 2026-09-22 07:44:26 +00:00
19 lines
549 B
Text
19 lines
549 B
Text
---
|
|
import NavBar from "../components/global/NavBar.astro";
|
|
import Layout from "../layouts/Layout.astro";
|
|
import ExperienceComponent from "../components/experience/ExperienceComponent.astro";
|
|
import MoreExperience from "../components/experience/MoreExperience.astro";
|
|
import Footer from "../components/global/FooterComponent.astro";
|
|
---
|
|
|
|
<Layout
|
|
title="Experience"
|
|
description="Find out RythonDev's previous education"
|
|
>
|
|
<NavBar />
|
|
<div id="Experience" class="pt-30">
|
|
<ExperienceComponent />
|
|
<MoreExperience />
|
|
</div>
|
|
<Footer />
|
|
</Layout>
|