Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| cd065742e4 | |||
| 5b79a07ea7 | |||
| 936399947c | |||
| 1c8b8608c6 | |||
| 3f72943b49 | |||
| e8b1be3532 | |||
| 268b742338 | |||
| a3844a0e5b | |||
| b99dfe1358 | |||
| 73eb411683 | |||
| 0fc935ecca | |||
| 7d1a176574 |
@@ -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
|
||||
|
||||
@@ -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"},
|
||||
]}
|
||||
@@ -226,16 +226,16 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "faq-1", title: "How do I place an order?", 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-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: "What is your return policy?", content: "We offer a 30-day return policy for unused items in their original packaging. Please visit our 'Returns' page for detailed instructions."},
|
||||
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."},
|
||||
{
|
||||
id: "faq-3", title: "Do you ship internationally?", content: "Currently, we only ship within India. We are working on expanding our delivery services internationally in the near future."},
|
||||
id: "faq-3", title: "", content: "Currently, we only ship within India. We are working on expanding our delivery services internationally in the near future."},
|
||||
{
|
||||
id: "faq-4", title: "How can I track my order?", content: "Once your order is shipped, you will receive an email with a tracking number and a link to track your package's journey."},
|
||||
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="Frequently Asked Questions"
|
||||
title="Frequently DHABALE"
|
||||
description="Find answers to common questions about our products, orders, and services."
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
@@ -249,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 - GO NOW ", href: "mailto:info@dhabalesport.com"},
|
||||
text: " GALLI , SHARTRI NAGER TUMSAR ", href: "mailto:info@dhabalesport.com"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -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