Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b546b80ff5 | |||
| 67e5edc9cd | |||
| 5281937b7a | |||
| 635493d8ea | |||
| 7e7251dca9 | |||
| b4e2c99d17 | |||
| 32c03851f2 | |||
| aa54b44644 | |||
| 3407ef0c19 |
@@ -7,6 +7,8 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
import { Public_Sans } from "next/font/google";
|
||||
import { Lato } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -21,9 +23,12 @@ export const metadata: Metadata = {
|
||||
},
|
||||
};
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans",
|
||||
|
||||
|
||||
const lato = Lato({
|
||||
variable: "--font-lato",
|
||||
subsets: ["latin"],
|
||||
weight: ["100", "300", "400", "700", "900"],
|
||||
});
|
||||
|
||||
export default function RootLayout({
|
||||
@@ -34,7 +39,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${dmSans.variable} antialiased`}>
|
||||
<body className={`${lato.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
@@ -35,7 +35,7 @@ export default function LandingPage() {
|
||||
{ name: "Studio", id: "about" },
|
||||
{ name: "Process", id: "features" },
|
||||
{ name: "Portfolio", id: "products" },
|
||||
{ name: "Consult", id: "contact" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Design Studio 9"
|
||||
/>
|
||||
@@ -143,15 +143,16 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
<ContactCTA
|
||||
tag="Connect with Us"
|
||||
title="Start Your Luxury Home Journey"
|
||||
description="Design Studio 9, B8, Pocket C, Mayfield Garden, Sector 50, Gurugram. Reach out via WhatsApp or Email to begin."
|
||||
buttons={[
|
||||
{ text: "Start on WhatsApp", href: "https://wa.me/919876543210" },
|
||||
{ text: "Email Us", href: "mailto:info@designstudio9.com" }
|
||||
]}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Get Started"
|
||||
title="Begin Your Design Story"
|
||||
description="Let's discuss how we can transform your space."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/abstract-city-building-shadows_23-2149283234.jpg"
|
||||
buttonText="Connect on WhatsApp"
|
||||
onSubmit={(email) => console.log('Consultation requested:', email)}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -160,7 +161,7 @@ export default function LandingPage() {
|
||||
logoText="Design Studio 9"
|
||||
columns={[
|
||||
{ title: "Studio", items: [{ label: "About Us", href: "#about" }, { label: "Portfolio", href: "#products" }] },
|
||||
{ title: "Connect", items: [{ label: "WhatsApp", href: "#" }] },
|
||||
{ title: "Connect", items: [{ label: "WhatsApp", href: "https://wa.me/919876543210" }, { label: "Instagram", href: "https://instagram.com/designstudio9" }] },
|
||||
]}
|
||||
copyrightText="© 2025 Design Studio 9. All Rights Reserved."
|
||||
/>
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-dm-sans), sans-serif;
|
||||
font-family: var(--font-lato), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-dm-sans), sans-serif;
|
||||
font-family: var(--font-lato), sans-serif;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user