diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 2f62ee9..116dc8f 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,42 +1,23 @@
import type { Metadata } from "next";
-import { Nunito_Sans } from "next/font/google";
+import { SF_Pro_Display } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const nunitoSans = Nunito_Sans({
- variable: "--font-nunito-sans",
- subsets: ["latin"],
+const sfProDisplay = SF_Pro_Display({
+ variable: "--font-sf-pro-display", subsets: ["latin"],
+ weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
- title: "M&T Kelly Electrical - Geelong's Trusted Local Electrician",
- description: "Owner-operated electrical services in Geelong. Residential, commercial, solar & emergency solutions. Free quotes, insured & registered.",
- keywords: "electrician, Geelong, electrical services, solar, rewiring, switchboards, emergency",
- openGraph: {
- title: "M&T Kelly Electrical - Geelong Electrician",
- description: "Professional electrical services for homes and businesses in Geelong. Domestic & commercial wiring specialist.",
- siteName: "M&T Kelly Electrical",
- type: "website",
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "M&T Kelly - Geelong Electrical Services", description: "Professional electrical services in Geelong. Residential, commercial, solar, and emergency solutions."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+ {children}
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 43172de..091f1c7 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -117,7 +117,7 @@ export default function HomePage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/styles/base.css b/src/app/styles/base.css
index 53147f7..1d40cd1 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-nunito-sans), sans-serif;
+ font-family: var(--font-sf-pro-display), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
- font-family: var(--font-nunito-sans), sans-serif;
+ font-family: var(--font-sf-pro-display), sans-serif;
}
diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css
index a44f622..215ac83 100644
--- a/src/app/styles/variables.css
+++ b/src/app/styles/variables.css
@@ -2,23 +2,23 @@
/* Base units */
/* --vw is set by ThemeProvider */
- /* --background: #e3deea;;
- --card: #ffffff;;
- --foreground: #27231f;;
- --primary-cta: #27231f;;
- --secondary-cta: #ffffff;;
- --accent: #c68a62;;
- --background-accent: #c68a62;; */
+ /* --background: #ffffff;;
+ --card: #f5f5f5;;
+ --foreground: #1a1a1a;;
+ --primary-cta: #000000;;
+ --secondary-cta: #f5f5f5;;
+ --accent: #e5e5e5;;
+ --background-accent: #d0d0d0;; */
- --background: #e3deea;;
- --card: #ffffff;;
- --foreground: #27231f;;
- --primary-cta: #27231f;;
+ --background: #ffffff;;
+ --card: #f5f5f5;;
+ --foreground: #1a1a1a;;
+ --primary-cta: #000000;;
--primary-cta-text: #e3deea;;
- --secondary-cta: #ffffff;;
+ --secondary-cta: #f5f5f5;;
--secondary-cta-text: #27231f;;
- --accent: #c68a62;;
- --background-accent: #c68a62;;
+ --accent: #e5e5e5;;
+ --background-accent: #d0d0d0;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);