Merge version_2 into main #2

Merged
bender merged 3 commits from version_2 into main 2026-03-07 15:36:05 +00:00
3 changed files with 14 additions and 47 deletions

View File

@@ -1,52 +1,20 @@
import type { Metadata } from "next";
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 halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ variable: "--font-inter", subsets: ["latin"] });
export const metadata: Metadata = {
title: "DevFlow - Modern SaaS Development Platform", description: "Build powerful APIs in minutes with DevFlow. Deploy production-ready backends with zero infrastructure headaches. Trusted by 5,000+ developers worldwide.", keywords: "SaaS development, API platform, backend as a service, developer tools, cloud infrastructure", metadataBase: new URL("https://devflow.example.com"),
alternates: {
canonical: "https://devflow.example.com"},
openGraph: {
title: "DevFlow - Build Powerful APIs in Minutes", description: "The modern platform for SaaS development. Deploy production-ready backends with zero infrastructure headaches.", url: "https://devflow.example.com", siteName: "DevFlow", type: "website", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Acga3gZMuJ1u5NFOmdV5iuAkfE/professional-headshot-of-a-young-female--1772897523639-f9c1a001.png", alt: "DevFlow Platform Dashboard"},
],
},
twitter: {
card: "summary_large_image", title: "DevFlow - Build Powerful APIs in Minutes", description: "The modern platform for SaaS development", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Acga3gZMuJ1u5NFOmdV5iuAkfE/professional-headshot-of-a-young-female--1772897523639-f9c1a001.png"],
},
robots: {
index: true,
follow: true,
},
};
title: "DevFlow - Build Powerful APIs in Minutes", description: "DevFlow is the modern platform for SaaS development. Deploy production-ready backends with zero infrastructure headaches. Trusted by 5,000+ developers worldwide."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${inter.variable} antialiased`}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1414,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-inter), sans-serif;
font-family: var(--font-space-grotesk), sans-serif;
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #050012;
--card: #040121;
--foreground: #f0e6ff;
--primary-cta: #c89bff;
--background: #0a0a1a;
--card: #151530;
--foreground: #e0e6ff;
--primary-cta: #00d9ff;
--primary-cta-text: #050012;
--secondary-cta: #1d123b;
--secondary-cta: #1a1a3a;
--secondary-cta-text: #f0e6ff;
--accent: #684f7b;
--background-accent: #65417c;
--accent: #7c3aed;
--background-accent: #6d28d9;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);