11 Commits

Author SHA1 Message Date
125bf8113b Merge version_4 into main
Merge version_4 into main
2026-05-06 18:58:43 +00:00
b546b80ff5 Update theme fonts 2026-05-06 18:58:37 +00:00
67e5edc9cd Update theme fonts 2026-05-06 18:58:36 +00:00
0d4d9af516 Merge version_4 into main
Merge version_4 into main
2026-05-06 18:57:33 +00:00
5281937b7a Update theme fonts 2026-05-06 18:57:30 +00:00
635493d8ea Update theme fonts 2026-05-06 18:57:30 +00:00
b6a02a2e34 Merge version_4 into main
Merge version_4 into main
2026-05-06 18:52:40 +00:00
7e7251dca9 Update src/app/page.tsx 2026-05-06 18:52:37 +00:00
cd0ae3e30f Merge version_4 into main
Merge version_4 into main
2026-05-06 18:52:11 +00:00
b4e2c99d17 Update src/app/page.tsx 2026-05-06 18:52:05 +00:00
32c03851f2 Merge version_3 into main
Merge version_3 into main
2026-05-06 18:50:58 +00:00
3 changed files with 22 additions and 21 deletions

View File

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

View File

@@ -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,29 +143,25 @@ 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>
<div id="map" data-section="map" className="bg-card p-10 mt-10 rounded-xl">
<h2 className="text-2xl font-bold mb-4">Our Location</h2>
<p className="text-lg">Design Studio 9/ PDCO Architects, B8, Basement, Pocket C, Mayfield Garden, Sector 50, Gurugram, Haryana 122018</p>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
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."
/>

View File

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