init
This commit is contained in:
11
cansat/config/fonts.ts
Normal file
11
cansat/config/fonts.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { Fira_Code as FontMono, Inter as FontSans } from "next/font/google";
|
||||
|
||||
export const fontSans = FontSans({
|
||||
subsets: ["latin"],
|
||||
variable: "--font-sans",
|
||||
});
|
||||
|
||||
export const fontMono = FontMono({
|
||||
subsets: ["latin"],
|
||||
variable: "--font-mono",
|
||||
});
|
51
cansat/config/site.ts
Normal file
51
cansat/config/site.ts
Normal file
@@ -0,0 +1,51 @@
|
||||
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.",
|
||||
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://twitter.com/",
|
||||
docs: "https://heroui.com",
|
||||
discord: "https://discordapp.com/users/404304818178621440",
|
||||
sponsor: "/sponsor",
|
||||
},
|
||||
};
|
Reference in New Issue
Block a user