Compare commits
21 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 63ebb8e16b | |||
| 520be886a2 | |||
| 297cf1bbb6 | |||
| 7687ff7ece | |||
| 0dd2308aeb | |||
| 397fabbdb1 | |||
| a1a2eec317 | |||
| 69ce031a7e | |||
| 3e4ac457d0 | |||
| d0f5959726 | |||
| 0af212f038 | |||
| 59d0adbf88 | |||
| 12fa20d5e5 | |||
| 3881888b21 | |||
| 78e912e693 | |||
| b650fada9c | |||
| 229936b120 | |||
| 2aa87de1d8 | |||
| 2cd675b876 | |||
| e80c0885ec | |||
| caf00a4168 |
@@ -6,23 +6,26 @@ import "@/lib/gsap-setup";
|
|||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||||
|
import { Libre_Baskerville } from "next/font/google";
|
||||||
|
import { Open_Sans } from "next/font/google";
|
||||||
|
|
||||||
const halant = Halant({
|
|
||||||
variable: "--font-halant",
|
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: 'Elite Dental Care | Luxury Dentistry',
|
title: 'Elite Dental Care | Luxury Dentistry',
|
||||||
description: 'Experience unparalleled luxury and precision dentistry. Our elite practice offers bespoke treatments in a serene, sophisticated environment for discerning patients.',
|
description: 'Experience unparalleled luxury and precision dentistry. Our elite practice offers bespoke treatments in a serene, sophisticated environment for discerning patients.',
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
const inter = Inter({
|
||||||
|
variable: "--font-inter",
|
||||||
|
subsets: ["latin"],
|
||||||
|
});
|
||||||
|
const openSans = Open_Sans({
|
||||||
|
variable: "--font-open-sans",
|
||||||
|
subsets: ["latin"],
|
||||||
|
});
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: Readonly<{
|
||||||
@@ -31,9 +34,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
|
||||||
className={`${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
|
|||||||
@@ -177,7 +177,7 @@ export default function LuxuryDentistPage() {
|
|||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBase
|
<FooterBase
|
||||||
logoText="Luxury Dental Care California"
|
logoText="Empire Dental Clinic."
|
||||||
copyrightText="© 2025 Luxury Dental Care | Premium Dentistry Since 2005"
|
copyrightText="© 2025 Luxury Dental Care | Premium Dentistry Since 2005"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-inter-tight), sans-serif;
|
font-family: var(--font-open-sans), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-inter-tight), sans-serif;
|
font-family: var(--font-inter), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #f7f6f7;
|
--background: #f5faff;
|
||||||
--card: #ffffff;
|
--card: #ffffff;
|
||||||
--foreground: #0c1325;
|
--foreground: #001122;
|
||||||
--primary-cta: #0798ff;
|
--primary-cta: #15479c;
|
||||||
--primary-cta-text: #f7f6f7;
|
--primary-cta-text: #f5faff;
|
||||||
--secondary-cta: #ffffff;
|
--secondary-cta: #ffffff;
|
||||||
--secondary-cta-text: #0c1325;
|
--secondary-cta-text: #001122;
|
||||||
--accent: #93c7ff;
|
--accent: #a8cce8;
|
||||||
--background-accent: #a8cde8;
|
--background-accent: #7ba3cf;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user