53 lines
973 B
TypeScript
53 lines
973 B
TypeScript
export type SiteConfig = typeof siteConfig;
|
|
|
|
export const siteConfig = {
|
|
name: "Adlerka Space Program",
|
|
description: "ASP is a team of young engineers who aspire to reach the stars.",
|
|
image: "/whatwedo.png",
|
|
navItems: [
|
|
{
|
|
label: "Home",
|
|
href: "/",
|
|
},
|
|
{
|
|
label: "About",
|
|
href: "/about",
|
|
},
|
|
{
|
|
label: "Blog",
|
|
href: "/blog",
|
|
},
|
|
|
|
{
|
|
label: "SPŠE Adlerka",
|
|
href: "https://www.adlerka.sk/",
|
|
},
|
|
],
|
|
navMenuItems: [
|
|
{
|
|
label: "Home",
|
|
href: "/",
|
|
},
|
|
{
|
|
label: "About",
|
|
href: "/about",
|
|
},
|
|
{
|
|
label: "Blog",
|
|
href: "/blog",
|
|
},
|
|
|
|
{
|
|
label: "SPŠE Adlerka",
|
|
href: "https://www.adlerka.sk/",
|
|
},
|
|
],
|
|
links: {
|
|
github: "https://github.com/7Noble",
|
|
twitter: "https://x.com/adlerka_space",
|
|
docs: "https://heroui.com",
|
|
discord: "https://discordapp.com/users/404304818178621440",
|
|
sponsor: "/sponsor",
|
|
},
|
|
};
|