Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c9cb81c9ff | |||
| aa81157493 | |||
| 5c11045bb8 | |||
| 926ae3df07 | |||
| abda07ad60 | |||
| baa886a513 | |||
| 560f6b21af | |||
| e280e28320 | |||
| e4f57850ed | |||
| ffd20565a5 | |||
| 863813003c |
@@ -27,8 +27,8 @@ export default function AboutPage() {
|
|||||||
brandName="AppFlow"
|
brandName="AppFlow"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "About", id: "/about" },
|
{ name: "Features", id: "#features" },
|
||||||
{ name: "Contact", id: "/contact" }
|
{ name: "Testimonials", id: "#testimonials" }
|
||||||
]}
|
]}
|
||||||
button={{
|
button={{
|
||||||
text: "Download App", href: "#"
|
text: "Download App", href: "#"
|
||||||
|
|||||||
@@ -29,9 +29,8 @@ export default function BlogPage() {
|
|||||||
brandName="AppFlow"
|
brandName="AppFlow"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Features", id: "features" },
|
{ name: "Features", id: "#features" },
|
||||||
{ name: "Testimonials", id: "testimonials" },
|
{ name: "Testimonials", id: "#testimonials" }
|
||||||
{ name: "Pricing", id: "metrics" }
|
|
||||||
]}
|
]}
|
||||||
button={{ text: "Download App", href: "#cta" }}
|
button={{ text: "Download App", href: "#cta" }}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -27,8 +27,8 @@ export default function ContactPage() {
|
|||||||
brandName="AppFlow"
|
brandName="AppFlow"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "About", id: "/about" },
|
{ name: "Features", id: "#features" },
|
||||||
{ name: "Contact", id: "/contact" }
|
{ name: "Testimonials", id: "#testimonials" }
|
||||||
]}
|
]}
|
||||||
button={{
|
button={{
|
||||||
text: "Download App", href: "#"
|
text: "Download App", href: "#"
|
||||||
|
|||||||
@@ -82,6 +82,14 @@ export default function HomePage() {
|
|||||||
{
|
{
|
||||||
id: 2,
|
id: 2,
|
||||||
tag: "Analytics", title: "Real-Time Analytics", subtitle: "Track your usage patterns instantly", description: "Get detailed insights into your app usage with beautiful, interactive charts and graphs. Monitor daily activity, discover trends, and optimize how you spend your time on the app.", imageSrc: "https://img.b2bpic.net/free-vector/task-management-app_23-2148639059.jpg"
|
tag: "Analytics", title: "Real-Time Analytics", subtitle: "Track your usage patterns instantly", description: "Get detailed insights into your app usage with beautiful, interactive charts and graphs. Monitor daily activity, discover trends, and optimize how you spend your time on the app.", imageSrc: "https://img.b2bpic.net/free-vector/task-management-app_23-2148639059.jpg"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
tag: "Predictive", title: "Smart Forecasting", subtitle: "Predict trends before they happen", description: "Our advanced AI algorithms analyze your usage patterns and predict future trends with remarkable accuracy. Stay ahead of the curve with data-driven forecasts that help you plan better and optimize your digital life.", imageSrc: "https://img.b2bpic.net/free-vector/task-management-app_23-2148639059.jpg"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 4,
|
||||||
|
tag: "Intelligence", title: "Behavioral Insights", subtitle: "Understand your digital habits", description: "Discover deep insights into your behavior patterns with our intelligent analysis engine. Get personalized recommendations based on your unique usage profile and receive actionable suggestions to enhance productivity and wellbeing.", imageSrc: "https://img.b2bpic.net/free-vector/goals-habits-tracking-app-screens_23-2148660328.jpg?id=9925439"
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -86,7 +86,8 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
brandName="AppFlow"
|
brandName="AppFlow"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Shop", id: "/shop" }
|
{ name: "Features", id: "#features" },
|
||||||
|
{ name: "Testimonials", id: "#testimonials" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||||
/>
|
/>
|
||||||
@@ -126,7 +127,8 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
brandName="AppFlow"
|
brandName="AppFlow"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Shop", id: "/shop" }
|
{ name: "Features", id: "#features" },
|
||||||
|
{ name: "Testimonials", id: "#testimonials" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||||
/>
|
/>
|
||||||
@@ -173,7 +175,8 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
brandName="AppFlow"
|
brandName="AppFlow"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Shop", id: "/shop" }
|
{ name: "Features", id: "#features" },
|
||||||
|
{ name: "Testimonials", id: "#testimonials" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -36,7 +36,8 @@ export default function ShopPage() {
|
|||||||
brandName="AppFlow"
|
brandName="AppFlow"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Shop", id: "/shop" }
|
{ name: "Features", id: "#features" },
|
||||||
|
{ name: "Testimonials", id: "#testimonials" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Cart", onClick: () => console.log("cart") }}
|
button={{ text: "Cart", onClick: () => console.log("cart") }}
|
||||||
/>
|
/>
|
||||||
@@ -75,7 +76,8 @@ export default function ShopPage() {
|
|||||||
brandName="AppFlow"
|
brandName="AppFlow"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Shop", id: "/shop" }
|
{ name: "Features", id: "#features" },
|
||||||
|
{ name: "Testimonials", id: "#testimonials" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Cart", onClick: () => console.log("cart") }}
|
button={{ text: "Cart", onClick: () => console.log("cart") }}
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user