Add src/app/features/page.tsx

This commit is contained in:
2026-04-08 16:08:15 +00:00
parent be14de3be1
commit d04c96b098

35
src/app/features/page.tsx Normal file
View File

@@ -0,0 +1,35 @@
"use client";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import FeatureCardSix from "@/components/sections/feature/FeatureCardSix";
import FooterBase from "@/components/sections/footer/FooterBase";
export default function FeaturesPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
brandName="EditFlow"
navItems={[
{ name: "Features", id: "/features" },
{ name: "Pricing", id: "/pricing" },
{ name: "About", id: "/about" },
]}
button={{ text: "Open Editor", href: "#contact" }}
/>
<FeatureCardSix
title="Advanced AI Feature Suite"
description="Powerful tools engineered to streamline professional creative output."
textboxLayout="default"
features={[
{ title: "AI Color Grading", description: "Cinematic look matching with one click." },
{ title: "Object Removal", description: "Generative removal of unwanted subjects." }
]}
/>
<FooterBase logoText="EditFlow" columns={[]} />
</ReactLenis>
</ThemeProvider>
);
}