Compare commits
27 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 58fbfa17fc | |||
| 5b1650526f | |||
| 248a0a9675 | |||
| a0168efaf7 | |||
| f4ed48fc80 | |||
| 36f548171b | |||
| cd20d22830 | |||
| 5c0fad812f | |||
| caf0d1ed98 | |||
| 68bfb33c66 | |||
| 747f78aa73 | |||
| bfbf8e4ce7 | |||
| 9ba1711548 | |||
| a3692c8bfb | |||
| 484a8baaf8 | |||
| a73c8b4930 | |||
| c89657b667 | |||
| 7a472f284c | |||
| b876df62ba | |||
| ec10f8a910 | |||
| cb1d026903 | |||
| 367fc23c28 | |||
| 97519e8372 | |||
| 9884a20dd0 | |||
| 6dfe535658 | |||
| a17b3fb1ae | |||
| e9cd75da08 |
@@ -6,20 +6,22 @@ import "@/lib/gsap-setup";
|
|||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||||
|
import { Manrope } from "next/font/google";
|
||||||
|
import { DM_Sans } from "next/font/google";
|
||||||
|
import { Inter_Tight } from "next/font/google";
|
||||||
|
|
||||||
const halant = Halant({
|
|
||||||
variable: "--font-halant",
|
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = { title: 'VogueGrid | Curated Fashion & Apparel Store', description: 'Discover the latest trends at VogueGrid. Shop our exclusive collection of premium clothing, from everyday essentials to statement pieces. Elevate your style today.', openGraph: { title: 'VogueGrid | Curated Fashion & Apparel Store', description: 'Discover the latest trends at VogueGrid. Shop our exclusive collection of premium clothing, from everyday essentials to statement pieces. Elevate your style today.', type: 'website' } };
|
export const metadata: Metadata = { title: 'VogueGrid | Curated Fashion & Apparel Store', description: 'Discover the latest trends at VogueGrid. Shop our exclusive collection of premium clothing, from everyday essentials to statement pieces. Elevate your style today.', openGraph: { title: 'VogueGrid | Curated Fashion & Apparel Store', description: 'Discover the latest trends at VogueGrid. Shop our exclusive collection of premium clothing, from everyday essentials to statement pieces. Elevate your style today.', type: 'website' } };
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
const interTight = Inter_Tight({
|
||||||
|
variable: "--font-inter-tight",
|
||||||
|
subsets: ["latin"],
|
||||||
|
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||||
|
});
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: Readonly<{
|
||||||
@@ -28,9 +30,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body className={`${interTight.variable} antialiased`}>
|
||||||
className={`${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #ffffff;
|
--background: #f6f0e9;
|
||||||
--card: #f9f9f9;
|
--card: #efe7dd;
|
||||||
--foreground: #120006e6;
|
--foreground: #2b180a;
|
||||||
--primary-cta: #e63946;
|
--primary-cta: #2b180a;
|
||||||
--primary-cta-text: #ffffff;
|
--primary-cta-text: #f6f0e9;
|
||||||
--secondary-cta: #f9f9f9;
|
--secondary-cta: #efe7dd;
|
||||||
--secondary-cta-text: #120006e6;
|
--secondary-cta-text: #2b180a;
|
||||||
--accent: #e2e2e2;
|
--accent: #94877c;
|
||||||
--background-accent: #c4c4c4;
|
--background-accent: #afa094;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user