6 Commits

Author SHA1 Message Date
b8396031f1 Merge version_1 into main
Merge version_1 into main
2026-03-07 15:42:20 +00:00
81c3f98fa1 Update theme colors 2026-03-07 15:42:14 +00:00
d74b2b4257 Switch to version 1: modified src/app/styles/variables.css 2026-03-07 15:38:33 +00:00
c8fe97427d Switch to version 1: modified src/app/styles/base.css 2026-03-07 15:38:33 +00:00
cfc99ce4d9 Switch to version 1: modified src/app/layout.tsx 2026-03-07 15:38:32 +00:00
f97d44059d Merge version_2 into main
Merge version_2 into main
2026-03-07 15:36:05 +00:00
3 changed files with 49 additions and 16 deletions

View File

@@ -1,20 +1,52 @@
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 inter = Inter({ variable: "--font-inter", subsets: ["latin"] });
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
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."};
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,
},
};
export default function RootLayout({
children,
}: {
}: Readonly<{
children: React.ReactNode;
}) {
}>) {
return (
<html lang="en">
<body className={`${inter.variable} antialiased`}>{children}
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1382,6 +1414,7 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

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

View File

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