Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 64cdfe8fba | |||
| 9b78c48ba6 | |||
| 3cf3a8ca26 | |||
| 925db921dd | |||
| 5d0650caf3 | |||
| 2004718ec8 | |||
| 4050d788ec | |||
| 275b929451 | |||
| 4d543101c3 | |||
| 03e980acac | |||
| 7aa83fc920 | |||
| 94e04665da | |||
| 95e39888d4 | |||
| 6d830b540b | |||
| ef5115e9a6 |
@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Inter_Tight } from "next/font/google";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -40,10 +41,15 @@ export const metadata: Metadata = {
|
||||
},
|
||||
};
|
||||
|
||||
const interTight = Inter_Tight({
|
||||
variable: "--font-inter-tight",
|
||||
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const openSans = Open_Sans({
|
||||
variable: "--font-open-sans",
|
||||
subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
|
||||
export default function RootLayout({
|
||||
@@ -54,7 +60,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${interTight.variable} antialiased`}>
|
||||
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -17,9 +17,9 @@ export default function LandingPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="directional-hover"
|
||||
defaultTextAnimation="background-highlight"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="largeSizeMediumTitles"
|
||||
background="none"
|
||||
cardStyle="soft-shadow"
|
||||
@@ -164,6 +164,11 @@ export default function LandingPage() {
|
||||
id: "m5", icon: Award,
|
||||
title: "Comprehensive", value: "Warranty & Care"},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Explore Our Collection", href: "#collection"
|
||||
}
|
||||
]}
|
||||
title="Assured Trust & Excellence"
|
||||
description="Every timepiece in our collection undergoes stringent verification and is backed by our commitment to unparalleled quality and service."
|
||||
className="py-20 lg:py-32"
|
||||
@@ -278,4 +283,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
font-family: var(--font-open-sans), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-libre-baskerville), serif;
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #efebe5;
|
||||
--card: #f7f2ea;
|
||||
--background: #FFFFFF;
|
||||
--card: #F8F8F8;
|
||||
--foreground: #000000;
|
||||
--primary-cta: #000000;
|
||||
--primary-cta-text: #f5f4f0;
|
||||
--secondary-cta: #ffffff;
|
||||
--secondary-cta-text: #f5f4f0;
|
||||
--accent: #ffffff;
|
||||
--background-accent: #e1b875;
|
||||
--primary-cta: #B8860B;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #E0E0E0;
|
||||
--secondary-cta-text: #000000;
|
||||
--accent: #D4AF37;
|
||||
--background-accent: #F0F0F0;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user