8 Commits

Author SHA1 Message Date
6026ac1918 Update src/app/page.tsx 2026-03-09 20:18:58 +00:00
dbc2eea22e Update src/app/layout.tsx 2026-03-09 20:18:58 +00:00
1cdf3316cd Merge version_2 into main
Merge version_2 into main
2026-03-09 20:16:31 +00:00
f6a0e8e327 Update src/app/layout.tsx 2026-03-09 20:16:27 +00:00
eccc354546 Merge version_2 into main
Merge version_2 into main
2026-03-09 20:15:43 +00:00
92ec931d22 Update src/app/page.tsx 2026-03-09 20:15:39 +00:00
2b6860d568 Update src/app/layout.tsx 2026-03-09 20:15:39 +00:00
72aa8deea8 Merge version_1 into main
Merge version_1 into main
2026-03-09 19:48:29 +00:00
2 changed files with 8 additions and 49 deletions

View File

@@ -1,60 +1,20 @@
import type { Metadata } from "next";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "DevFlow | Modern SaaS Development Platform", description: "Build, deploy, and scale applications with confidence. DevFlow is the comprehensive platform for development teams seeking powerful automation, monitoring, and collaboration tools.", keywords: "SaaS development, CI/CD platform, API gateway, deployment automation, developer tools", openGraph: {
title: "DevFlow | SaaS Development Platform", description: "Transform your development lifecycle with DevFlow's powerful automation and monitoring platform.", siteName: "DevFlow", type: "website", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AipurdVMil0uZbzwUuFaGkTvH9/a-modern-sleek-software-development-dash-1773085588609-8ecbb9dc.png", alt: "DevFlow Dashboard"
}
]
},
twitter: {
card: "summary_large_image", title: "DevFlow | SaaS Development Platform", description: "Build, deploy, and scale with confidence using DevFlow.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AipurdVMil0uZbzwUuFaGkTvH9/a-modern-sleek-software-development-dash-1773085588609-8ecbb9dc.png"]
},
robots: {
index: true,
follow: true
}
};
title: "DevFlow - Build, Deploy, and Scale with Confidence", description: "DevFlow transforms how development teams collaborate, deploy, and monitor their applications."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${manrope.variable} ${dmSans.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1422,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -250,8 +250,8 @@ export default function LandingPage() {
background={{ variant: "radial-gradient" }}
useInvertedBackground={true}
inputPlaceholder="your@email.com"
buttonText="Subscribe"
termsText="We respect your privacy. Unsubscribe anytime. By subscribing, you agree to our Privacy Policy."
buttonText="Get Updates"
termsText="No spam. Unsubscribe anytime."
/>
</div>