Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| df1c3ad118 | |||
| 14dae8082d | |||
| cac73cd104 | |||
| 9358b45a62 | |||
| 0d5eae2681 | |||
| 75091921f6 | |||
| 5ace8bc110 | |||
| 8103e10241 | |||
| 9eb087bb0a | |||
| 80ef79f556 | |||
| 9358959edd | |||
| a95788f6ce |
@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Mulish } from "next/font/google";
|
||||
import { Libre_Baskerville } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -20,8 +21,14 @@ export const metadata: Metadata = {
|
||||
},
|
||||
};
|
||||
|
||||
const mulish = Mulish({
|
||||
variable: "--font-mulish",
|
||||
|
||||
const libreBaskerville = Libre_Baskerville({
|
||||
variable: "--font-libre-baskerville",
|
||||
subsets: ["latin"],
|
||||
weight: ["400", "700"],
|
||||
});
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
@@ -33,7 +40,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${mulish.variable} antialiased`}>
|
||||
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -40,13 +40,13 @@ export default function LandingPage() {
|
||||
{
|
||||
name: "Contact", id: "contact"},
|
||||
]}
|
||||
brandName="LUXE SHOP"
|
||||
brandName="RUHVANTA CART "
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroOverlay
|
||||
title="Luxury Reimagined for Your Style"
|
||||
title="RUHVANTA CART PROVIDING BEST PRODUCTS "
|
||||
description="Discover our handpicked collection of premium items, designed to bring elegance and sophistication to your daily life."
|
||||
buttons={[
|
||||
{
|
||||
@@ -115,7 +115,7 @@ export default function LandingPage() {
|
||||
id: "p6", name: "Minimalist Timepiece", price: "$350", imageSrc: "http://img.b2bpic.net/free-photo/close-outdoor-fashion-portrait-stylish-woman-voluminous-white-trendy-top-classic-luxury-hat-leopard-sunglasses_343596-1775.jpg"},
|
||||
]}
|
||||
title="Featured Selection"
|
||||
description="Our most popular items this season."
|
||||
description="Hand-selected premium essentials curated for your unique style."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -222,10 +222,10 @@ export default function LandingPage() {
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="LUXE SHOP"
|
||||
logoText="RUHVANTA CART "
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-mulish), sans-serif;
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-mulish), sans-serif;
|
||||
font-family: var(--font-libre-baskerville), serif;
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #ffffff;
|
||||
--background: #beb599;
|
||||
--card: #f9f9f9;
|
||||
--foreground: #000000;
|
||||
--primary-cta: #d4af37;
|
||||
|
||||
Reference in New Issue
Block a user