Initial commit
This commit is contained in:
23
src/links.ts
Normal file
23
src/links.ts
Normal file
@ -0,0 +1,23 @@
|
||||
import * as m from "./paraglide/messages.js"
|
||||
|
||||
interface Link {
|
||||
label: string
|
||||
to: string
|
||||
}
|
||||
|
||||
const Links: Link[] = [
|
||||
{
|
||||
label: m.home(),
|
||||
to: "/",
|
||||
},
|
||||
{
|
||||
label: m.myProjects(),
|
||||
to: "/project",
|
||||
},
|
||||
{
|
||||
label: m.contactMe(),
|
||||
to: "/contact-me",
|
||||
},
|
||||
]
|
||||
|
||||
export default Links
|
Reference in New Issue
Block a user