diff --git a/package.json b/package.json index ff83f3f..b593388 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,9 @@ "build": "next build", "start": "next start", "lint": "next lint", - "format": "prettier --write \"./src/**/*.{js,jsx,ts,tsx}\"" + "format": "prettier --write \"./src/**/*.{js,jsx,ts,tsx}\"", + "park-ui": "npx @park-ui/cli", + "components:add": "npx @park-ui/cli components add" }, "dependencies": { "@ark-ui/react": "^3.9.0", diff --git a/src/app/(frontend)/Moderustic-VariableFont_wght.ttf b/src/app/(frontend)/Moderustic-VariableFont_wght.ttf new file mode 100644 index 0000000..a8d8a31 Binary files /dev/null and b/src/app/(frontend)/Moderustic-VariableFont_wght.ttf differ diff --git a/src/app/(frontend)/[locale]/about/page.tsx b/src/app/(frontend)/[locale]/about/page.tsx new file mode 100644 index 0000000..e69de29 diff --git a/src/app/(frontend)/[locale]/layout.tsx b/src/app/(frontend)/[locale]/layout.tsx index 10334fd..39d1268 100644 --- a/src/app/(frontend)/[locale]/layout.tsx +++ b/src/app/(frontend)/[locale]/layout.tsx @@ -1,19 +1,16 @@ import "../globals.css"; +import Footer from "@/components/layout/footer"; import { I18nProviderClient } from "@/i18n/client"; import type { Metadata } from "next"; +import Navbar from "@/components/layout/navbar"; import { Params } from "./params"; import localFont from "next/font/local"; +import { styled } from "@styled-system/jsx"; -const geistSans = localFont({ - src: "../fonts/GeistVF.woff", - variable: "--font-geist-sans", - weight: "100 900", -}); -const geistMono = localFont({ - src: "../fonts/GeistMonoVF.woff", - variable: "--font-geist-mono", - weight: "100 900", +const moderustic = localFont({ + src: "../Moderustic-VariableFont_wght.ttf", + display: "swap", }); export const metadata: Metadata = { @@ -30,9 +27,13 @@ export default function RootLayout({ }>) { return ( - - {children} - + + + + {children} +