9 Commits

Author SHA1 Message Date
9358b45a62 Update src/app/page.tsx 2026-04-18 08:55:25 +00:00
0d5eae2681 Merge version_3 into main
Merge version_3 into main
2026-04-18 08:51:58 +00:00
75091921f6 Update src/app/page.tsx 2026-04-18 08:51:55 +00:00
5ace8bc110 Merge version_2 into main
Merge version_2 into main
2026-04-18 08:50:25 +00:00
8103e10241 Update theme fonts 2026-04-18 08:50:22 +00:00
9eb087bb0a Update theme fonts 2026-04-18 08:50:22 +00:00
80ef79f556 Merge version_2 into main
Merge version_2 into main
2026-04-18 08:50:09 +00:00
9358959edd Update theme colors 2026-04-18 08:50:03 +00:00
a95788f6ce Merge version_1 into main
Merge version_1 into main
2026-04-18 08:18:49 +00:00
4 changed files with 16 additions and 9 deletions

View File

@@ -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

View File

@@ -11,7 +11,7 @@ import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import { MessageCircle, ShoppingBag, Star, Zap, Award, Shield } from "lucide-react";
import { MessageCircle, ShoppingBag, Star, Zap, Award, Shield, Moon, Sun, User, Heart, Settings } from "lucide-react";
export default function LandingPage() {
return (
@@ -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>
@@ -228,4 +228,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -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;
}

View File

@@ -10,7 +10,7 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #ffffff;
--background: #beb599;
--card: #f9f9f9;
--foreground: #000000;
--primary-cta: #d4af37;