Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #4.
This commit is contained in:
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1438,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -80,9 +80,9 @@ export default function HomePage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardRotatedCarousel
|
||||
title="Welcome to Flaw Studio CRM"
|
||||
description="A bespoke private CRM system designed for architecture studios. Manage projects, clients, leads, finances, and team workflows with precision and elegance."
|
||||
tag="Premium Private System"
|
||||
title="Streamline Architecture Studio Operations & Boost Profitability by 30%"
|
||||
description="Increase project profitability by 30% with precision project management, real-time financial tracking, and role-based team workflows. Reduce administrative overhead by 40% while maintaining complete audit trails for every transaction."
|
||||
tag="30% Profitability Increase"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
@@ -103,7 +103,7 @@ export default function HomePage() {
|
||||
{
|
||||
id: "5", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-business-concept_53876-95331.jpg", imageAlt: "Invoice Document Financial"},
|
||||
{
|
||||
id: "6", imageSrc: "http://img.b2bpic.net/free-photo/meeting-calendar-reminder_53876-33657.jpg", imageAlt: "Calendar Schedule Event"},
|
||||
id: "6", imageSrc: "http://img.b2bpic.net/free-photo/meeting-calendar-lead_53876-33657.jpg", imageAlt: "Calendar Schedule Event"},
|
||||
]}
|
||||
autoPlay={true}
|
||||
autoPlayInterval={5000}
|
||||
@@ -274,4 +274,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user