diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index a1f92b2..4fe76b9 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -29,7 +29,7 @@ export default function BlogPage() { brandName="TechFlow" navItems={[ { name: "Home", id: "hero" }, - { name: "Features", id: "features" }, + { name: "Features", id: "/features" }, { name: "FAQ", id: "faq" }, { name: "Contact", id: "contact" } ]} @@ -62,7 +62,7 @@ export default function BlogPage() { columns={[ { title: "Product", items: [ - { label: "Features", href: "features" }, + { label: "Features", href: "/features" }, { label: "Pricing", href: "#" }, { label: "Security", href: "#" } ] @@ -95,4 +95,4 @@ export default function BlogPage() { ); -} \ No newline at end of file +} diff --git a/src/app/features/page.tsx b/src/app/features/page.tsx new file mode 100644 index 0000000..a7c9985 --- /dev/null +++ b/src/app/features/page.tsx @@ -0,0 +1,101 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; + +export default function FeaturesPage() { + return ( + + + +
+ +
+ + +
+ ); +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 852cdc8..3537b81 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,44 +1,20 @@ import type { Metadata } from "next"; -import { Figtree } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const figtree = Figtree({ - variable: "--font-figtree", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "TechFlow - Join Our Developer Waitlist", description: "Be among the first to experience the revolutionary platform transforming software development. Join 5,000+ early adopters on our waitlist.", keywords: "software development, developer tools, automation, productivity, waitlist, tech startup", metadataBase: new URL("https://techflow.dev"), - alternates: { - canonical: "https://techflow.dev" - }, - openGraph: { - title: "TechFlow - Join Our Developer Waitlist", description: "Be among the first to experience the revolutionary platform transforming software development.", url: "https://techflow.dev", siteName: "TechFlow", type: "website" - }, - twitter: { - card: "summary_large_image", title: "TechFlow - Join Our Developer Waitlist", description: "Be among the first to experience the revolutionary platform transforming software development." - }, - robots: { - index: true, - follow: true - } -}; + title: "TechFlow", description: "The future of software development"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}