Merge version_2 into main #2
@@ -1,57 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Source_Sans_3 } 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 inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const sourceSans3 = Source_Sans_3({
|
||||
variable: "--font-source-sans-3", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "DevFlow - SaaS Platform for Modern Developers", description: "Build powerful applications faster with DevFlow. Enterprise-grade infrastructure, real-time analytics, and seamless integrations for developers. Start free today.", keywords: "SaaS platform, developer tools, API infrastructure, cloud platform, application development", metadataBase: new URL("https://devflow.io"),
|
||||
alternates: {
|
||||
canonical: "https://devflow.io"},
|
||||
openGraph: {
|
||||
title: "DevFlow - SaaS Platform for Modern Developers", description: "Build powerful applications faster with DevFlow. Enterprise-grade infrastructure for developers.", url: "https://devflow.io", siteName: "DevFlow", type: "website", images: [
|
||||
{
|
||||
url: "/placeholders/placeholder1.webp", alt: "DevFlow Platform Dashboard"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "DevFlow - SaaS Platform for Modern Developers", description: "Enterprise-grade infrastructure for developers. Build faster, deploy instantly, scale effortlessly.", images: ["/placeholders/placeholder1.webp"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "DevFlow - Build Powerful Applications at Lightning Speed", description: "The complete SaaS platform for developers. Integrate seamlessly, deploy instantly, and scale effortlessly with enterprise-grade infrastructure built for modern teams."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1419,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -190,7 +190,7 @@ export default function LandingPage() {
|
||||
plans={[
|
||||
{
|
||||
id: "starter", badge: "Popular", badgeIcon: Sparkles,
|
||||
price: "$29/mo", subtitle: "Perfect for startups and side projects", buttons: [{ text: "Get Started", href: "#contact" }],
|
||||
price: "$29/mo", subtitle: "Perfect for startups—scale to $99/mo when ready", buttons: [{ text: "Get Started", href: "#contact" }],
|
||||
features: [
|
||||
"Up to 1M requests/month", "1 project", "Basic analytics", "Community support", "99.9% uptime SLA"
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user