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}
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index af1273d..82188c6 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -29,7 +29,7 @@ export default function LandingPage() {
brandName="TechFlow"
navItems={[
{ name: "Home", id: "hero" },
- { name: "Features", id: "features" },
+ { name: "Features", id: "/features" },
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" }
]}
@@ -49,7 +49,7 @@ export default function LandingPage() {
avatarText="Join 5,000+ early adopters"
buttons={[
{ text: "Join the Waitlist", href: "contact" },
- { text: "Learn More", href: "features" }
+ { text: "Learn More", href: "/features" }
]}
/>
@@ -172,7 +172,7 @@ export default function LandingPage() {
columns={[
{
title: "Product", items: [
- { label: "Features", href: "features" },
+ { label: "Features", href: "/features" },
{ label: "Pricing", href: "#" },
{ label: "Security", href: "#" }
]
@@ -204,4 +204,4 @@ export default function LandingPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx
index 15bf75c..b8ceae5 100644
--- a/src/app/shop/[id]/page.tsx
+++ b/src/app/shop/[id]/page.tsx
@@ -86,7 +86,7 @@ export default function ProductPage({ params }: ProductPageProps) {
brandName="TechFlow"
navItems={[
{ name: "Home", id: "hero" },
- { name: "Features", id: "features" },
+ { name: "Features", id: "/features" },
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" }
]}
@@ -100,7 +100,7 @@ export default function ProductPage({ params }: ProductPageProps) {
columns={[
{
title: "Product", items: [
- { label: "Features", href: "features" },
+ { label: "Features", href: "/features" },
{ label: "Pricing", href: "#" },
{ label: "Security", href: "#" }
]
@@ -155,7 +155,7 @@ export default function ProductPage({ params }: ProductPageProps) {
brandName="TechFlow"
navItems={[
{ name: "Home", id: "hero" },
- { name: "Features", id: "features" },
+ { name: "Features", id: "/features" },
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" }
]}
@@ -177,7 +177,7 @@ export default function ProductPage({ params }: ProductPageProps) {
columns={[
{
title: "Product", items: [
- { label: "Features", href: "features" },
+ { label: "Features", href: "/features" },
{ label: "Pricing", href: "#" },
{ label: "Security", href: "#" }
]
@@ -231,7 +231,7 @@ export default function ProductPage({ params }: ProductPageProps) {
brandName="TechFlow"
navItems={[
{ name: "Home", id: "hero" },
- { name: "Features", id: "features" },
+ { name: "Features", id: "/features" },
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" }
]}
@@ -278,7 +278,7 @@ export default function ProductPage({ params }: ProductPageProps) {
columns={[
{
title: "Product", items: [
- { label: "Features", href: "features" },
+ { label: "Features", href: "/features" },
{ label: "Pricing", href: "#" },
{ label: "Security", href: "#" }
]
@@ -311,4 +311,4 @@ export default function ProductPage({ params }: ProductPageProps) {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx
index f607f7c..ad670aa 100644
--- a/src/app/shop/page.tsx
+++ b/src/app/shop/page.tsx
@@ -36,7 +36,7 @@ export default function ShopPage() {
brandName="TechFlow"
navItems={[
{ name: "Home", id: "hero" },
- { name: "Features", id: "features" },
+ { name: "Features", id: "/features" },
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" }
]}
@@ -50,7 +50,7 @@ export default function ShopPage() {
columns={[
{
title: "Product", items: [
- { label: "Features", href: "features" },
+ { label: "Features", href: "/features" },
{ label: "Pricing", href: "#" },
{ label: "Security", href: "#" }
]
@@ -104,7 +104,7 @@ export default function ShopPage() {
brandName="TechFlow"
navItems={[
{ name: "Home", id: "hero" },
- { name: "Features", id: "features" },
+ { name: "Features", id: "/features" },
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" }
]}
@@ -126,7 +126,7 @@ export default function ShopPage() {
columns={[
{
title: "Product", items: [
- { label: "Features", href: "features" },
+ { label: "Features", href: "/features" },
{ label: "Pricing", href: "#" },
{ label: "Security", href: "#" }
]
@@ -159,4 +159,4 @@ export default function ShopPage() {
);
-}
\ No newline at end of file
+}