Initial commit
This commit is contained in:
3
src/pages/en/contact-me.astro
Normal file
3
src/pages/en/contact-me.astro
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
|
||||
---
|
3
src/pages/en/hardware.astro
Normal file
3
src/pages/en/hardware.astro
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
|
||||
---
|
8
src/pages/en/index.astro
Normal file
8
src/pages/en/index.astro
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
import OnePager from "../../components/Greeting.astro"
|
||||
import Layout from "../../layouts/Layout.astro"
|
||||
---
|
||||
|
||||
<Layout title="Welcome">
|
||||
<OnePager />
|
||||
</Layout>
|
3
src/pages/en/links.astro
Normal file
3
src/pages/en/links.astro
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
|
||||
---
|
15
src/pages/en/project/[project].astro
Normal file
15
src/pages/en/project/[project].astro
Normal file
@ -0,0 +1,15 @@
|
||||
---
|
||||
import ProjectPage from "../../../components/ProjectPage.astro"
|
||||
import { type GetStaticPathsResult } from "astro"
|
||||
|
||||
export function getStaticPaths(): GetStaticPathsResult {
|
||||
return [
|
||||
{ params: { project: "hotelservice" } },
|
||||
{ params: { project: "homepage" } },
|
||||
]
|
||||
}
|
||||
|
||||
const { project } = Astro.params
|
||||
---
|
||||
|
||||
<ProjectPage project={project as string} />
|
5
src/pages/en/project/index.astro
Normal file
5
src/pages/en/project/index.astro
Normal file
@ -0,0 +1,5 @@
|
||||
---
|
||||
|
||||
---
|
||||
|
||||
<p>These are all my projects</p>
|
Reference in New Issue
Block a user