diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 69b6a50..639c88f 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,76 +1,28 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { DM_Sans } from "next/font/google";
+import { Geist, Geist_Mono } from "next/font/google";
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 geist = Geist({
+ variable: "--font-geist-sans", subsets: ["latin"],
});
-const inter = Inter({
- variable: "--font-inter",
- subsets: ["latin"],
-});
-
-const dmSans = DM_Sans({
- variable: "--font-dm-sans",
- subsets: ["latin"],
+const geistMono = Geist_Mono({
+ variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "Flaw Studio CRM - Premium Private Architecture System",
- description: "Bespoke private CRM for architecture studios. Manage projects, clients, finances, and teams with elegant design and powerful functionality.",
- keywords: "CRM, architecture studio, project management, client management, private system",
- metadataBase: new URL("https://flawstudio.com"),
- alternates: {
- canonical: "https://flawstudio.com",
- },
- openGraph: {
- title: "Flaw Studio CRM",
- description: "Premium private CRM for architecture studios",
- url: "https://flawstudio.com",
- siteName: "Flaw Studio",
- type: "website",
- images: [
- {
- url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXBkGvEZPYZeTm48IBeOo6PwY8/uploaded-1772729510192-kyybu06n.png",
- alt: "Flaw Studio CRM Dashboard",
- },
- ],
- },
- twitter: {
- card: "summary_large_image",
- title: "Flaw Studio CRM",
- description: "Premium private CRM for architecture studios",
- images: [
- "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXBkGvEZPYZeTm48IBeOo6PwY8/uploaded-1772729510192-kyybu06n.png",
- ],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Flaw Studio CRM", description: "Premium private CRM for architecture studios"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-