8 Commits

Author SHA1 Message Date
aa046ec8e7 Update theme fonts 2026-05-07 10:38:43 +00:00
6660d73052 Update theme fonts 2026-05-07 10:38:42 +00:00
a3082d0f1e Update theme fonts 2026-05-07 10:38:09 +00:00
b47de0db14 Update theme fonts 2026-05-07 10:38:09 +00:00
1414c298fc Update src/app/page.tsx 2026-05-07 10:32:43 +00:00
f15732be35 Merge version_3 into main
Merge version_3 into main
2026-05-07 10:31:41 +00:00
4f47e4d950 Update src/app/page.tsx 2026-05-07 10:31:38 +00:00
707824b4eb Merge version_2 into main
Merge version_2 into main
2026-05-07 10:30:41 +00:00
3 changed files with 16 additions and 5 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 { 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

View File

@@ -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={[

View File

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