Compare commits
18 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| cd065742e4 | |||
| 5b79a07ea7 | |||
| 936399947c | |||
| 1c8b8608c6 | |||
| 3f72943b49 | |||
| e8b1be3532 | |||
| 268b742338 | |||
| a3844a0e5b | |||
| b99dfe1358 | |||
| 73eb411683 | |||
| 0fc935ecca | |||
| 7d1a176574 | |||
| ec28f6155a | |||
| b50684d7d4 | |||
| 48ca59ff99 | |||
| 3d1c727efd | |||
| 2a3943fd3f | |||
| af3188a341 |
@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Montserrat } from "next/font/google";
|
||||
import { Libre_Baskerville } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -41,9 +42,16 @@ export const metadata: Metadata = {
|
||||
},
|
||||
};
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat",
|
||||
subsets: ["latin"]
|
||||
|
||||
|
||||
const libreBaskerville = Libre_Baskerville({
|
||||
variable: "--font-libre-baskerville",
|
||||
subsets: ["latin"],
|
||||
weight: ["400", "700"],
|
||||
});
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export default function RootLayout({
|
||||
@@ -54,7 +62,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${montserrat.variable} antialiased`}>
|
||||
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -62,8 +62,8 @@ export default function LandingPage() {
|
||||
background={{
|
||||
variant: "plain"}}
|
||||
imagePosition="right"
|
||||
title="Your DHABALE SPORT"
|
||||
description="GO NOW ADD SHOP NOW "
|
||||
title="Elevate Your Game with Premium Sports Gear"
|
||||
description="Discover a curated selection of high-quality equipment and apparel designed to boost your performance and passion. Shop now and experience the difference."
|
||||
kpis={[
|
||||
{
|
||||
value: "1000+", label: "Happy Customers"},
|
||||
@@ -77,7 +77,7 @@ export default function LandingPage() {
|
||||
{
|
||||
text: " Products", href: "#products"},
|
||||
{
|
||||
text: "GO SHOP NOW ", href: "#about"},
|
||||
text: "Learn More About Us", href: "#about"},
|
||||
]}
|
||||
avatars={[
|
||||
{
|
||||
@@ -87,7 +87,7 @@ export default function LandingPage() {
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/happy-senior-sportsman-feeling-motivated-while-listening-music-running-nature-copy-space_637285-3863.jpg", alt: "Customer 3"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/pleased-young-handsome-sporty-boy-wearing-headband-wristbands-with-dental-braces-standing-profile-view-holding-stretching-out-dumbbells-isolated-green-background-with-copy-space_141793-76915.jpg", alt: "Customer 4"},
|
||||
src: "http://img.b2bpic.net/free-photo/pleased-young-handsome-sporty-boy-wearing-headband-wristbands-with-dental-braces-with-dental-braces-standing-profile-view-holding-stretching-out-dumbbells-isolated-green-background-with-copy-space_141793-76915.jpg", alt: "Customer 4"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/muscular-young-male-athlete-sitting-track-field-relaxing_23-2148162094.jpg", alt: "Sports customer avatar"},
|
||||
]}
|
||||
@@ -121,6 +121,11 @@ export default function LandingPage() {
|
||||
description="At DHABALE SPORT, we are passionate about helping athletes achieve their best. We offer a curated selection of high-quality sports objects and kits, meticulously chosen for durability, performance, and style. Our commitment is to provide every customer with the right gear and expert advice to excel in their chosen sport."
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Evs2A5YGzOktWN7LnGHkVy1xJv/uploaded-1781072172248-bkif4l1r.png"
|
||||
imageAlt="Interior of a modern sports store with equipment displays"
|
||||
buttons={[
|
||||
{
|
||||
text: "Explore Products", href: "#products"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -221,7 +226,8 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "faq-1", title: "", content: "SHOPING."},
|
||||
id: "faq-1", title: "", content: "You can easily place an order by browsing our products, adding items to your cart, and proceeding to checkout. Follow the simple steps to complete your purchase."
|
||||
},
|
||||
{
|
||||
id: "faq-2", title: "", content: "We offer a 30-day return policy for unused items in their original packaging. Please visit our 'Returns' page for detailed instructions."},
|
||||
{
|
||||
@@ -229,8 +235,8 @@ export default function LandingPage() {
|
||||
{
|
||||
id: "faq-4", title: "", content: "Once your order is shipped, you will receive an email with a tracking number and a link to track your package's journey."},
|
||||
]}
|
||||
title=""
|
||||
description="Find answers to common questions about our products"
|
||||
title="Frequently DHABALE"
|
||||
description="Find answers to common questions about our products, orders, and services."
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
@@ -243,9 +249,9 @@ export default function LandingPage() {
|
||||
text="Ready to Gear Up? Contact DHABALE SPORT Today!"
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Us: +9028265581", href: "tel:+919876543210"},
|
||||
text: "Call Us: +9022 65581", href: "tel:+919876543210"},
|
||||
{
|
||||
text: "ADDRESS - AMAR DHABALE GALLI,SHASTRI NAGER,TUMSAR.MAHARASHTRA 441912 - GOOO NOWWWW ", href: "mailto:info@dhabalesport.com"},
|
||||
text: " GALLI , SHARTRI NAGER TUMSAR ", href: "mailto:info@dhabalesport.com"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -293,4 +299,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-montserrat), 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-montserrat), sans-serif;
|
||||
font-family: var(--font-libre-baskerville), serif;
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #f6f0e9;
|
||||
--card: #efe7dd;
|
||||
--foreground: #2b180a;
|
||||
--primary-cta: #2b180a;
|
||||
--primary-cta-text: #f6f0e9;
|
||||
--secondary-cta: #efe7dd;
|
||||
--secondary-cta-text: #2b180a;
|
||||
--accent: #94877c;
|
||||
--background-accent: #afa094;
|
||||
--background: #efebe5;
|
||||
--card: #f7f2ea;
|
||||
--foreground: #000000;
|
||||
--primary-cta: #000000;
|
||||
--primary-cta-text: #efebe5;
|
||||
--secondary-cta: #ffffff;
|
||||
--secondary-cta-text: #000000;
|
||||
--accent: #ffffff;
|
||||
--background-accent: #e0ad75;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user