From f8448084e0e8e7c2a2bed37f56952e5a69f51210 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 00:10:25 +0000 Subject: [PATCH 1/2] Update src/app/for-schools/page.tsx --- src/app/for-schools/page.tsx | 28 +++++++++++++++++++++------- 1 file changed, 21 insertions(+), 7 deletions(-) diff --git a/src/app/for-schools/page.tsx b/src/app/for-schools/page.tsx index b548fe4..bcc5eaa 100644 --- a/src/app/for-schools/page.tsx +++ b/src/app/for-schools/page.tsx @@ -2,6 +2,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import HeroOverlay from "@/components/sections/hero/HeroOverlay"; import FeatureBento from "@/components/sections/feature/FeatureBento"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; import Link from "next/link"; @@ -34,20 +35,32 @@ export default function ForSchoolsPage() { navItems={navItems} brandName="Azurity Studio" button={{ - text: "Book Your Ceremony", href: "/contact"}} + text: "Book Your Ceremony", href: "/contact" + }} + /> + + +
+
@@ -79,4 +93,4 @@ export default function ForSchoolsPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 4973ab5f140e7a93eec2eba9532b1a6ffa3c6d80 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 00:10:26 +0000 Subject: [PATCH 2/2] Update src/app/layout.tsx --- src/app/layout.tsx | 73 +++++++--------------------------------------- 1 file changed, 11 insertions(+), 62 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2ee7e0f..ecfa20e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,76 +1,26 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Montserrat } from "next/font/google"; +import "./styles/variables.css"; +import "./styles/base.css"; 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 inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const montserrat = Montserrat({ - variable: "--font-montserrat", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Azurity Studio | GTA Graduation & Commencement Photography", - description: "Professional graduation photography for Toronto-area colleges, universities, and schools. Ceremony coverage, formal portraits, on-site booths with instant prints. Trusted institutional partner.", - keywords: "GTA graduation photographer, commencement photography Toronto, college graduation photography, ceremony coverage, professional headshots", - metadataBase: new URL("https://azuritystudio.com"), - alternates: { - canonical: "https://azuritystudio.com", - }, - openGraph: { - title: "Azurity Studio | Professional Graduation Photography GTA", - description: "Capture the achievement. Professional commencement and graduation photography across the Greater Toronto Area for institutions.", - url: "https://azuritystudio.com", - siteName: "Azurity Studio", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/multinational-graduates-male-female-celebrating-graduation-university-campus-removing-their-graduation-hats-smiling-camera_496169-1297.jpg", - alt: "Graduation ceremony photography", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Azurity Studio | GTA Graduation Photography", - description: "Professional commencement photography for colleges, universities, and schools across Toronto.", - images: [ - "http://img.b2bpic.net/free-photo/multinational-graduates-male-female-celebrating-graduation-university-campus-removing-their-graduation-hats-smiling-camera_496169-1297.jpg", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Azurity Studio", description: "Professional photography and event coverage services"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +