Add src/app/features/page.tsx
This commit is contained in:
35
src/app/features/page.tsx
Normal file
35
src/app/features/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user