Compare commits
36 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 | |||
| 79a93a72b5 | |||
| 6dfe535658 | |||
| 85c387ca6b | |||
| a17b3fb1ae | |||
| 3be763d2d5 | |||
| e9cd75da08 | |||
| ee14199138 | |||
| a85d6d280a | |||
| ee18f1bbce | |||
| f3417796e1 | |||
| 59f2aedcad | |||
| 358cdc09b1 |
@@ -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
|
||||||
|
|||||||
@@ -37,9 +37,10 @@ export default function PersonalGridTemplatePage() {
|
|||||||
title="Collection"
|
title="Collection"
|
||||||
description="Minimalist wardrobe essentials, crafted for longevity."
|
description="Minimalist wardrobe essentials, crafted for longevity."
|
||||||
products={products}
|
products={products}
|
||||||
|
buttons={[{ text: "Shop All Essentials", href: "/shop" }]}
|
||||||
gridVariant="three-columns-all-equal-width"
|
gridVariant="three-columns-all-equal-width"
|
||||||
animationType="blur-reveal"
|
animationType="blur-reveal"
|
||||||
textboxLayout="default"
|
textboxLayout="split-description"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
className="py-20"
|
className="py-20"
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #0a0a0a;
|
--background: #f6f0e9;
|
||||||
--card: #1a1a1a;
|
--card: #efe7dd;
|
||||||
--foreground: #ffffffe6;
|
--foreground: #2b180a;
|
||||||
--primary-cta: #e6e6e6;
|
--primary-cta: #2b180a;
|
||||||
--primary-cta-text: #0a0a0a;
|
--primary-cta-text: #f6f0e9;
|
||||||
--secondary-cta: #1a1a1a;
|
--secondary-cta: #efe7dd;
|
||||||
--secondary-cta-text: #ffffffe6;
|
--secondary-cta-text: #2b180a;
|
||||||
--accent: #737373;
|
--accent: #94877c;
|
||||||
--background-accent: #737373;
|
--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