new correction are updated
This commit is contained in:
parent
b5d601b914
commit
f0dd073f45
BIN
src/app/fonts/DMSans-Bold.ttf
Normal file
BIN
src/app/fonts/DMSans-Bold.ttf
Normal file
Binary file not shown.
BIN
src/app/fonts/DMSans-Medium.ttf
Normal file
BIN
src/app/fonts/DMSans-Medium.ttf
Normal file
Binary file not shown.
BIN
src/app/fonts/DMSans-Regular.ttf
Normal file
BIN
src/app/fonts/DMSans-Regular.ttf
Normal file
Binary file not shown.
BIN
src/app/fonts/PlayfairDisplay-Bold.ttf
Normal file
BIN
src/app/fonts/PlayfairDisplay-Bold.ttf
Normal file
Binary file not shown.
BIN
src/app/fonts/PlayfairDisplay-Regular.ttf
Normal file
BIN
src/app/fonts/PlayfairDisplay-Regular.ttf
Normal file
Binary file not shown.
BIN
src/app/fonts/PlayfairDisplay-SemiBold.ttf
Normal file
BIN
src/app/fonts/PlayfairDisplay-SemiBold.ttf
Normal file
Binary file not shown.
@ -1,5 +1,5 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Playfair_Display, DM_Sans } from "next/font/google";
|
||||
import localFont from "next/font/local";
|
||||
import "./globals.css";
|
||||
// import ScrollProviders from "@/components/ScrollProviders";
|
||||
// import ScrollToTop from "@/components/ScrollToTop/ScrollToTop";
|
||||
@ -9,14 +9,46 @@ import CallButton from "@/components/CallButton/CallButton";
|
||||
import Script from "next/script";
|
||||
import NavbarClient from "@/components/NavbarClient";
|
||||
|
||||
const playfairDisplay = Playfair_Display({
|
||||
subsets: ["latin"],
|
||||
const playfairDisplay = localFont({
|
||||
src: [
|
||||
{
|
||||
path: "./fonts/PlayfairDisplay-Regular.ttf",
|
||||
weight: "400",
|
||||
style: "normal",
|
||||
},
|
||||
{
|
||||
path: "./fonts/PlayfairDisplay-SemiBold.ttf",
|
||||
weight: "600",
|
||||
style: "normal",
|
||||
},
|
||||
{
|
||||
path: "./fonts/PlayfairDisplay-Bold.ttf",
|
||||
weight: "700",
|
||||
style: "normal",
|
||||
},
|
||||
],
|
||||
variable: "--font-heading",
|
||||
display: "swap",
|
||||
});
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
subsets: ["latin"],
|
||||
const dmSans = localFont({
|
||||
src: [
|
||||
{
|
||||
path: "./fonts/DMSans-Regular.ttf",
|
||||
weight: "400",
|
||||
style: "normal",
|
||||
},
|
||||
{
|
||||
path: "./fonts/DMSans-Medium.ttf",
|
||||
weight: "500",
|
||||
style: "normal",
|
||||
},
|
||||
{
|
||||
path: "./fonts/DMSans-Bold.ttf",
|
||||
weight: "700",
|
||||
style: "normal",
|
||||
},
|
||||
],
|
||||
variable: "--font-canva-sans",
|
||||
display: "swap",
|
||||
});
|
||||
@ -155,8 +187,8 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
|
||||
{/* <NavbarWrapper /> */}
|
||||
<NavbarClient />
|
||||
{/* <NavbarWrapper /> */}
|
||||
<NavbarClient />
|
||||
{children}
|
||||
{/* <ScrollProviders /> */}
|
||||
{/* <ScrollToTop /> */}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user