From dfdbd070d6b2c52f6bd8ffa03440cff8ba6de4a4 Mon Sep 17 00:00:00 2001 From: development Date: Wed, 21 Jan 2026 12:16:13 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 279 +++++++++-------------------------------------- 1 file changed, 51 insertions(+), 228 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index bbd6c6e..d275e67 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,234 +1,57 @@ -"use client" +"use client"; -import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; -import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import HeroLogo from '@/components/sections/hero/HeroLogo'; -import FeatureCardOne from '@/components/sections/feature/FeatureCardOne'; -import AboutMetric from '@/components/sections/about/AboutMetric'; -import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; -import ContactSplit from '@/components/sections/contact/ContactSplit'; -import FooterBase from '@/components/sections/footer/FooterBase'; -import { Code, Server, Shield, Zap, Users, Globe, TrendingUp, ShoppingCart, Quote, Star } from 'lucide-react'; +export default function HomePage() { + const features = [ + { + title: "Dependency Injection", description: "Built-in dependency injection container makes your code more testable and maintainable", imageSrc: "/images/di.a0b12f44-1768997608322.svg", imageAlt: "Dependency Injection architecture" + }, + { + title: "Microservices", description: "Build scalable applications with microservices architecture", imageSrc: "/images/microservices.e0074903-1768997608338.svg", imageAlt: "Microservices architecture" + }, + { + title: "Ecosystem", description: "Rich ecosystem of modules and plugins for rapid development", imageSrc: "/images/ecosystem.eaa69289-1768997608340.svg", imageAlt: "Ecosystem overview" + }, + { + title: "Type Safety", description: "Built with TypeScript for better developer experience and fewer runtime errors", imageSrc: "/images/type-safety.34453790-1768997608341.svg", imageAlt: "TypeScript type safety" + }, + { + title: "Modular", description: "Modular architecture allows you to use only what you need", imageSrc: "/images/puzzle.c9dfc495-1768997608342.svg", imageAlt: "Modular architecture" + }, + { + title: "3D Graphics", description: "Advanced 3D graphics capabilities for modern web applications", imageSrc: "/images/3d.cfabe065-1768997608344.svg", imageAlt: "3D graphics" + } + ]; -export default function Page() { return ( - -