✨ Added Sb1 Actual integration to projects.
All checks were successful
Build and deploy website / build (push) Successful in 39s
All checks were successful
Build and deploy website / build (push) Successful in 39s
- Code style is Catppuccin Mocha - Added lang tag to project - Added keywords to project - Sort projects by latest updated
This commit is contained in:
@ -7,7 +7,10 @@ import "@/styles/global.css"
|
||||
export const prerender = true
|
||||
|
||||
export function getStaticPaths(): GetStaticPathsResult {
|
||||
return [{ params: { project: "homepage" } }]
|
||||
return [
|
||||
{ params: { project: "homepage" } },
|
||||
{ params: { project: "sb1budget" } },
|
||||
]
|
||||
}
|
||||
|
||||
const { project } = Astro.params
|
||||
|
@ -1,12 +1,9 @@
|
||||
---
|
||||
import { getCollection } from "astro:content"
|
||||
import Layout from "@/layouts/Layout.astro"
|
||||
import MyProjectsPage from "@/components/projects/MyProjectsPage.astro"
|
||||
import "@/styles/global.css"
|
||||
|
||||
const projects = await getCollection("projects")
|
||||
---
|
||||
|
||||
<Layout title="Projects">
|
||||
<MyProjectsPage projects={projects} />
|
||||
<MyProjectsPage />
|
||||
</Layout>
|
||||
|
Reference in New Issue
Block a user