Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| aa046ec8e7 | |||
| 6660d73052 | |||
| a3082d0f1e | |||
| b47de0db14 | |||
| 1414c298fc | |||
| f15732be35 | |||
| 4f47e4d950 | |||
| 707824b4eb |
@@ -7,6 +7,8 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Source_Sans_3 } from "next/font/google";
|
||||
import { Public_Sans } from "next/font/google";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -25,7 +27,16 @@ export const metadata: Metadata = {
|
||||
},
|
||||
};
|
||||
|
||||
const sourceSans3 = Source_Sans_3({ variable: "--font-source-sans-3", subsets: ["latin"] });
|
||||
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
@@ -35,7 +46,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${sourceSans3.variable} antialiased`}>
|
||||
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -47,7 +47,7 @@ export default function LandingPage() {
|
||||
description="At Calamvale Physiotherapy, we help you recover from pain, restore movement, and return to the things you love — with personalised, hands-on treatment in a welcoming environment."
|
||||
tag="Friendly care | Thorough assessments | Evidence-based treatment"
|
||||
buttons={[
|
||||
{ text: "Book an Appointment", href: "https://onlinebooking.physio/calamvale" },
|
||||
{ text: "Book an Appointment", href: "https://calamvale-physiotherapy.au4.cliniko.com/bookings?business_id=1711310719774893408&practitioner_id=1711310716318787368" },
|
||||
{ text: "Contact Our Team", href: "#contact" },
|
||||
]}
|
||||
mediaItems={[
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-source-sans-3), 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-source-sans-3), sans-serif;
|
||||
font-family: var(--font-dm-sans), sans-serif;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user