Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 45e14c3f46 | |||
| 935006000b | |||
| 5435f49fbb | |||
| 37d3b5ac45 |
@@ -7,6 +7,7 @@ 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 { DM_Sans } from "next/font/google";
|
import { DM_Sans } from "next/font/google";
|
||||||
|
import { Cormorant_Garamond, Montserrat } from "next/font/google";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -20,13 +21,14 @@ export const metadata: Metadata = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const dmSans = DM_Sans({
|
|
||||||
variable: "--font-dm-sans",
|
const cormorantGaramond = Cormorant_Garamond({
|
||||||
subsets: ["latin"],
|
variable: "--font-cormorant", subsets: ["latin"],
|
||||||
|
weight: ["700"],
|
||||||
});
|
});
|
||||||
const inter = Inter({
|
const montserrat = Montserrat({
|
||||||
variable: "--font-inter",
|
variable: "--font-montserrat", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
weight: ["500"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
@@ -37,7 +39,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
|
<body className={`${cormorantGaramond.variable} ${montserrat.variable} antialiased`}>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
|
|||||||
@@ -22,16 +22,17 @@ export default function LandingPage() {
|
|||||||
cardStyle="outline"
|
cardStyle="outline"
|
||||||
primaryButtonStyle="flat"
|
primaryButtonStyle="flat"
|
||||||
secondaryButtonStyle="solid"
|
secondaryButtonStyle="solid"
|
||||||
headingFontWeight="semibold"
|
headingFontWeight="bold"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "The Estate", id: "archive" },
|
{ name: "THE ESTATE", id: "archive" },
|
||||||
{ name: "The Manifesto", id: "manifesto" },
|
{ name: "THE MANIFESTO", id: "manifesto" },
|
||||||
]}
|
]}
|
||||||
brandName="ESTATE"
|
brandName="ESTATE"
|
||||||
|
className="tracking-[0.05em] uppercase"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -48,6 +49,7 @@ export default function LandingPage() {
|
|||||||
{ id: "5", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-woman-holding-old-mirror_23-2149640689.jpg", imageAlt: "Grainy Grisha" },
|
{ id: "5", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-woman-holding-old-mirror_23-2149640689.jpg", imageAlt: "Grainy Grisha" },
|
||||||
{ id: "6", imageSrc: "http://img.b2bpic.net/free-photo/rough-concrete-wall-surface_23-2148413267.jpg", imageAlt: "Sepia architectural" },
|
{ id: "6", imageSrc: "http://img.b2bpic.net/free-photo/rough-concrete-wall-surface_23-2148413267.jpg", imageAlt: "Sepia architectural" },
|
||||||
]}
|
]}
|
||||||
|
titleClassName="tracking-[-0.02em]"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -56,6 +58,7 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
tag="MANIFESTO"
|
tag="MANIFESTO"
|
||||||
title="THE VISION OF THE GRISHA"
|
title="THE VISION OF THE GRISHA"
|
||||||
|
titleClassName="tracking-[-0.02em]"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -65,6 +68,7 @@ export default function LandingPage() {
|
|||||||
gridVariant="three-columns-all-equal-width"
|
gridVariant="three-columns-all-equal-width"
|
||||||
animationType="blur-reveal"
|
animationType="blur-reveal"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
|
cardClassName="border border-[#8C5638]"
|
||||||
products={[
|
products={[
|
||||||
{ id: "001", name: "ITEM #001", price: "THE ESTATE", imageSrc: "http://img.b2bpic.net/free-photo/close-up-girl-with-vintage-backpack_23-2148752408.jpg" },
|
{ id: "001", name: "ITEM #001", price: "THE ESTATE", imageSrc: "http://img.b2bpic.net/free-photo/close-up-girl-with-vintage-backpack_23-2148752408.jpg" },
|
||||||
{ id: "002", name: "ITEM #002", price: "THE ESTATE", imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-wearing-heels_23-2149741919.jpg" },
|
{ id: "002", name: "ITEM #002", price: "THE ESTATE", imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-wearing-heels_23-2149741919.jpg" },
|
||||||
@@ -72,6 +76,7 @@ export default function LandingPage() {
|
|||||||
]}
|
]}
|
||||||
title="THE EVIDENCE"
|
title="THE EVIDENCE"
|
||||||
description="Pieces from the private archive."
|
description="Pieces from the private archive."
|
||||||
|
textBoxTitleClassName="tracking-[-0.02em]"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -92,6 +97,7 @@ export default function LandingPage() {
|
|||||||
{ id: "q4", title: "Are these pieces limited?", content: "Yes, every item in our archive is produced in strictly limited runs." },
|
{ id: "q4", title: "Are these pieces limited?", content: "Yes, every item in our archive is produced in strictly limited runs." },
|
||||||
{ id: "q5", title: "Can I visit the boutique?", content: "Boutique appointments are handled via private request." },
|
{ id: "q5", title: "Can I visit the boutique?", content: "Boutique appointments are handled via private request." },
|
||||||
]}
|
]}
|
||||||
|
textBoxTitleClassName="tracking-[-0.02em]"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -103,6 +109,7 @@ export default function LandingPage() {
|
|||||||
{ heading: "Privacy Policy", content: [{ type: "paragraph", text: "Your data is handled with the same reverence as our craft." }] },
|
{ heading: "Privacy Policy", content: [{ type: "paragraph", text: "Your data is handled with the same reverence as our craft." }] },
|
||||||
{ heading: "Membership Terms", content: [{ type: "paragraph", text: "No sharing of credentials; strict adherence to the Grisha conduct." }] },
|
{ heading: "Membership Terms", content: [{ type: "paragraph", text: "No sharing of credentials; strict adherence to the Grisha conduct." }] },
|
||||||
]}
|
]}
|
||||||
|
titleClassName="tracking-[-0.02em]"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -113,17 +120,19 @@ export default function LandingPage() {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "THE ESTATE", items: [
|
title: "THE ESTATE", items: [
|
||||||
{ label: "Instagram", href: "https://instagram.com" },
|
{ label: "INSTAGRAM", href: "https://instagram.com" },
|
||||||
{ label: "Vimeo", href: "#" },
|
{ label: "VIMEO", href: "#" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "IDENTITY", items: [
|
title: "IDENTITY", items: [
|
||||||
{ label: "Founded by THE GRISHA", href: "#" },
|
{ label: "FOUNDED BY THE GRISHA", href: "#" },
|
||||||
{ label: "Philosophy", href: "#" },
|
{ label: "PHILOSOPHY", href: "#" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
columnTitleClassName="tracking-[0.05em] uppercase"
|
||||||
|
columnItemClassName="tracking-[0.05em] uppercase"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: undefined;
|
font-family: var(--font-montserrat), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: undefined;
|
font-family: var(--font-cormorant), serif;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user