Merge version_3 into main #4

Merged
bender merged 2 commits from version_3 into main 2026-03-09 20:19:02 +00:00
2 changed files with 9 additions and 58 deletions

View File

@@ -2,13 +2,10 @@ import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "DevFlow - Build, Deploy, and Scale with Confidence", description: "DevFlow transforms how development teams collaborate, deploy, and monitor their applications. Streamline your entire development lifecycle with our comprehensive platform."};
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,
@@ -16,14 +13,8 @@ export default function RootLayout({
children: React.ReactNode;
}) {
return (
<html lang="en" suppressHydrationWarning>
<body className={`${inter.variable}`}>
{children}
<script
async
src="https://cdn.jsdelivr.net/npm/lenis@1.1.9/dist/lenis.min.js"
></script>
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `

View File

@@ -9,7 +9,6 @@ import TestimonialCardFifteen from "@/components/sections/testimonial/Testimonia
import PricingCardEight from "@/components/sections/pricing/PricingCardEight";
import ContactCenter from "@/components/sections/contact/ContactCenter";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import ProductCardThree from "@/components/sections/product/ProductCardThree";
import {
Zap,
Shield,
@@ -25,8 +24,7 @@ import {
BarChart3,
Database,
Crown,
Mail,
Heart
Mail
} from "lucide-react";
export default function LandingPage() {
@@ -48,7 +46,6 @@ export default function LandingPage() {
brandName="DevFlow"
navItems={[
{ name: "Features", id: "features" },
{ name: "Products", id: "products" },
{ name: "Pricing", id: "pricing" },
{ name: "Testimonials", id: "testimonials" }
]}
@@ -132,43 +129,6 @@ export default function LandingPage() {
/>
</div>
<div id="products" data-section="products">
<ProductCardThree
title="Featured Products"
description="Explore our curated collection of development tools and services designed to accelerate your workflow."
tag="Shop"
tagAnimation="opacity"
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
gridVariant="three-columns-all-equal-width"
products={[
{
id: "1", name: "DevFlow Pro Starter Kit", price: "$149.00", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AipurdVMil0uZbzwUuFaGkTvH9/a-professional-headshot-of-a-software-en-1773085587993-ee66552b.png", imageAlt: "DevFlow Pro Starter Kit product image", initialQuantity: 1,
onFavorite: () => console.log("Favorited product 1"),
onProductClick: () => console.log("Clicked product 1"),
onQuantityChange: (qty) => console.log("Quantity changed to", qty),
isFavorited: false
},
{
id: "2", name: "Enterprise Deployment Bundle", price: "$499.00", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AipurdVMil0uZbzwUuFaGkTvH9/a-professional-headshot-of-a-tech-leader-1773085588230-3b066879.png", imageAlt: "Enterprise Deployment Bundle product image", initialQuantity: 1,
onFavorite: () => console.log("Favorited product 2"),
onProductClick: () => console.log("Clicked product 2"),
onQuantityChange: (qty) => console.log("Quantity changed to", qty),
isFavorited: false
},
{
id: "3", name: "Advanced Monitoring Suite", price: "$299.00", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AipurdVMil0uZbzwUuFaGkTvH9/a-professional-headshot-of-a-product-man-1773085588105-83f53d57.png", imageAlt: "Advanced Monitoring Suite product image", initialQuantity: 1,
onFavorite: () => console.log("Favorited product 3"),
onProductClick: () => console.log("Clicked product 3"),
onQuantityChange: (qty) => console.log("Quantity changed to", qty),
isFavorited: false
}
]}
carouselMode="buttons"
/>
</div>
<div id="interactive-features" data-section="interactive-features">
<FeatureBorderGlow
title="Experience Premium Development Tools"
@@ -290,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>
@@ -301,9 +261,9 @@ export default function LandingPage() {
{
title: "Product", items: [
{ label: "Features", href: "#features" },
{ label: "Products", href: "#products" },
{ label: "Pricing", href: "#pricing" },
{ label: "Security", href: "#" }
{ label: "Security", href: "#" },
{ label: "Roadmap", href: "#" }
]
},
{