initial commit
This commit is contained in:
parent
bfe7515aa6
commit
5d603dce90
17 changed files with 977 additions and 64 deletions
|
@ -1,23 +1,25 @@
|
|||
import type { Metadata } from "next";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import Header from "@/components/header";
|
||||
import { Footer } from "@/components/ui/footer";
|
||||
import FooterSection from "@/components/sections/footer/default";
|
||||
import type { Metadata } from "next";
|
||||
import localFont from "next/font/local";
|
||||
import "./globals.css";
|
||||
|
||||
const geistSans = Geist({
|
||||
variable: "--font-geist-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono",
|
||||
subsets: ["latin"],
|
||||
const Vazir = localFont({
|
||||
src: [
|
||||
{
|
||||
path: "../public/fonts/Vazirmatn-Regular.woff2",
|
||||
weight: "400",
|
||||
},
|
||||
{
|
||||
path: "../public/fonts/Vazirmatn-Bold.woff2",
|
||||
weight: "700",
|
||||
},
|
||||
],
|
||||
variable: "--Vazir",
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Create Next App",
|
||||
description: "Generated by create next app",
|
||||
title: "پارچ کست",
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
|
@ -28,7 +30,7 @@ export default function RootLayout({
|
|||
return (
|
||||
<html lang="fa" dir="rtl" className="dark">
|
||||
<body
|
||||
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
|
||||
className={`${Vazir.className} antialiased`}
|
||||
suppressHydrationWarning
|
||||
>
|
||||
<Header />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue