From 276130a539b1de8a82b95fc73ddbf404679e48f1 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 03:05:23 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index da7d176..c2aaf30 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,32 +1,29 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; +import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; -import { Raleway } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const raleway = Raleway({ - variable: "--font-raleway", subsets: ["latin"], -}); - export const metadata: Metadata = { - title: "Smile Dental | Professional Dental Care in Karachi & Lahore", description: "Expert dental clinic offering comprehensive services including cleanings, cosmetic dentistry, and orthodontics. Book your appointment today.", keywords: "dental clinic, dentist, teeth cleaning, cosmetic dentistry, orthodontics, Karachi, Lahore", metadataBase: new URL("https://www.smiledental.pk"), + title: "PakistanDental | Professional Dental Care in Pakistan", description: "Expert dental clinic offering comprehensive services including cleanings, cosmetic dentistry, and orthodontics. Book your appointment today.", keywords: "dental clinic, dentist, teeth cleaning, cosmetic dentistry, orthodontics, Pakistan", metadataBase: new URL("https://www.pakistandental.pk"), alternates: { - canonical: "https://www.smiledental.pk"}, + canonical: "https://www.pakistandental.pk" + }, openGraph: { - title: "Smile Dental | Professional Dental Care", description: "Transform your smile with our expert dental team. Modern techniques, compassionate care.", url: "https://www.smiledental.pk", siteName: "Smile Dental", type: "website"}, + title: "PakistanDental | Professional Dental Care", description: "Transform your smile with our expert dental team. Modern techniques, compassionate care.", url: "https://www.pakistandental.pk", siteName: "PakistanDental", type: "website" + }, twitter: { - card: "summary_large_image", title: "Smile Dental | Professional Dental Care", description: "Expert dental clinic in Karachi and Lahore"}, + card: "summary_large_image", title: "PakistanDental | Professional Dental Care", description: "Expert dental clinic in Pakistan" + }, robots: { index: true, follow: true, @@ -42,7 +39,7 @@ export default function RootLayout({ {children} -- 2.49.1 From 1db06c24988fd6549a59e176ef3f83cc2f601d37 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 03:05:23 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 80 ++++++++++++++++++++++++------------------------ 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 6d983e8..40b1005 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -17,14 +17,14 @@ export default function LandingPage() {
Date: Thu, 5 Mar 2026 03:05:24 +0000 Subject: [PATCH 3/4] Update src/app/styles/base.css --- src/app/styles/base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index 2c0269e..c719d19 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-raleway), 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-raleway), sans-serif; + font-family: var(--font-dm-sans), sans-serif; } -- 2.49.1 From d38d9a3cae583388c6eb7f48e3764a6e338a641c Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 03:05:24 +0000 Subject: [PATCH 4/4] Update src/app/styles/variables.css --- src/app/styles/variables.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 8cff76c..94055c3 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #efebe5; - --card: #f7f2ea; - --foreground: #000000; - --primary-cta: #000000; + --background: #f5f5f5; + --card: #ffffff; + --foreground: #1c1c1c; + --primary-cta: #1c7c5e; --primary-cta-text: #efebe5; --secondary-cta: #ffffff; --secondary-cta-text: #000000; - --accent: #ffffff; - --background-accent: #e1b875; + --accent: #1c7c5e; + --background-accent: #a8e8ba; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1