Compare commits
16 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e5b05236fa | |||
| e6a5c19b84 | |||
| 10f2b9ab76 | |||
| 98481bf5b8 | |||
| 9964c08a2e | |||
| 4eebdcdfd8 | |||
| d5729190a5 | |||
| 2eb616d1ee | |||
| 03fd02a930 | |||
| a7d68841ae | |||
| 77459b8a2c | |||
| 451e7f583c | |||
| 4b1ad1654f | |||
| 9244ee5e1d | |||
| 1600ac391c | |||
| 3a07509fd0 |
@@ -1,20 +1,9 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const openSans = Open_Sans({
|
||||
variable: "--font-open-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
@@ -22,11 +11,13 @@ const inter = Inter({
|
||||
export const metadata: Metadata = {
|
||||
title: "FIOVA - AI Operating System for Info Creators", description: "FIOVA is the AI-powered operating system built for coaches, course creators, and educators. Scale your business with specialized AI agents handling content, marketing, sales, and growth.", keywords: "AI, course creators, coaching business, content creation, marketing automation, business growth, AI agents, info business", metadataBase: new URL("https://fiova.io"),
|
||||
alternates: {
|
||||
canonical: "https://fiova.io"},
|
||||
canonical: "https://fiova.io"
|
||||
},
|
||||
openGraph: {
|
||||
title: "FIOVA - The AI Operating System for Creators", description: "Transform your info business with context-aware AI agents. Build, market, and scale without hiring a team.", url: "https://fiova.io", siteName: "FIOVA", type: "website", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3APQi2VazrPHRZFQ4dDd3kCVYaf/a-sleek-ai-operating-system-dashboard-in-1772491934788-2c5a1ece.png", alt: "FIOVA AI Operating System Interface"},
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3APQi2VazrPHRZFQ4dDd3kCVYaf/a-sleek-ai-operating-system-dashboard-in-1772491934788-2c5a1ece.png", alt: "FIOVA AI Operating System Interface"
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
@@ -41,10 +32,9 @@ export default function RootLayout({
|
||||
}>) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<head />
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${openSans.variable} ${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<body className={`${inter.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
|
||||
@@ -31,8 +31,7 @@ export default function LandingPage() {
|
||||
{ name: "Product", id: "about" },
|
||||
{ name: "How It Works", id: "features" },
|
||||
{ name: "Philosophy", id: "philosophy" },
|
||||
{ name: "Agents", id: "agents" },
|
||||
{ name: "Blog", id: "blog" }
|
||||
{ name: "Agents", id: "agents" }
|
||||
]}
|
||||
button={{ text: "Start Free Trial", href: "#contact" }}
|
||||
brandName="FIOVA"
|
||||
@@ -152,15 +151,6 @@ export default function LandingPage() {
|
||||
},
|
||||
{
|
||||
id: "agent-3", title: "Nurture", description: "Builds relationships with your leads. Email sequences, SMS campaigns, lead magnets, community content, webinars, and challenges that move prospects closer to buying.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3APQi2VazrPHRZFQ4dDd3kCVYaf/five-interconnected-agent-modules-displa-1772491935422-6833814c.png?_wi=4", imageAlt: "Nurture agent"
|
||||
},
|
||||
{
|
||||
id: "agent-4", title: "Sales", description: "Converts leads into customers. VSL scripts, sales pages, application pages, sales call scripts, DM sequences, and objection handling that closes deals.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3APQi2VazrPHRZFQ4dDd3kCVYaf/five-interconnected-agent-modules-displa-1772491935422-6833814c.png?_wi=5", imageAlt: "Sales agent"
|
||||
},
|
||||
{
|
||||
id: "agent-5", title: "Scale", description: "Grows your business beyond you. Financial dashboards, team building with job descriptions and SOPs, launch planning, and partnership outreach.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3APQi2VazrPHRZFQ4dDd3kCVYaf/five-interconnected-agent-modules-displa-1772491935422-6833814c.png?_wi=6", imageAlt: "Scale agent"
|
||||
},
|
||||
{
|
||||
id: "agent-6", title: "Intelligence", description: "Your business brain. Stores everything about who you are, your audience, what you sell, how you communicate, your competitors, and your metrics—continuously learning and updating.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3APQi2VazrPHRZFQ4dDd3kCVYaf/five-interconnected-agent-modules-displa-1772491935422-6833814c.png?_wi=7", imageAlt: "Intelligence agent"
|
||||
}
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
@@ -236,22 +226,20 @@ export default function LandingPage() {
|
||||
showRating={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t-1", name: "Sarah Johnson", handle: "@sarahjcreator", testimonial: "FIOVA cut my content creation time in half. Instead of spending hours drafting emails and scripts, I now get 80% done in 20% of the time. It's like having a marketing team in my computer.", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3APQi2VazrPHRZFQ4dDd3kCVYaf/professional-headshot-of-a-confident-fem-1772491934620-c296a480.png?_wi=1", imageAlt: "Sarah Johnson"
|
||||
id: "t-1", name: "Sarah Johnson", handle: "@sarahjcreator", testimonial: "FIOVA cut my content creation time in half. Instead of spending hours drafting emails and scripts, I now get 80% done in 20% of the time. It's like having a marketing team in my computer.", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3APQi2VazrPHRZFQ4dDd3kCVYaf/professional-headshot-of-a-confident-fem-1772491934620-c296a480.png?_wi=1", imageAlt: "Sarah Johnson"
|
||||
},
|
||||
{
|
||||
id: "t-2", name: "Michael Chen", handle: "@mikeinsights", testimonial: "The intelligence layer truly understands my business. Every output feels personal and accurate. This is the first AI tool I've used that doesn't feel generic.", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3APQi2VazrPHRZFQ4dDd3kCVYaf/professional-headshot-of-a-confident-mal-1772491933963-5512b6e8.png?_wi=1", imageAlt: "Michael Chen"
|
||||
id: "t-2", name: "Michael Chen", handle: "@mikeinsights", testimonial: "The intelligence layer truly understands my business. Every output feels personal and accurate. This is the first AI tool I've used that doesn't feel generic.", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3APQi2VazrPHRZFQ4dDd3kCVYaf/professional-headshot-of-a-confident-mal-1772491933963-5512b6e8.png?_wi=1", imageAlt: "Michael Chen"
|
||||
},
|
||||
{
|
||||
id: "t-3", name: "Emma Rodriguez", handle: "@emmacoachlife", testimonial: "I was skeptical about AI replacing my creativity, but FIOVA amplifies it instead. The 60/40 balance is perfect. I stay in control while it handles the heavy lifting.", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3APQi2VazrPHRZFQ4dDd3kCVYaf/professional-headshot-of-a-confident-fem-1772491933220-817e4ef0.png", imageAlt: "Emma Rodriguez"
|
||||
id: "t-3", name: "Emma Rodriguez", handle: "@emmacoachlife", testimonial: "I was skeptical about AI replacing my creativity, but FIOVA amplifies it instead. The 60/40 balance is perfect. I stay in control while it handles the heavy lifting.", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3APQi2VazrPHRZFQ4dDd3kCVYaf/professional-headshot-of-a-confident-fem-1772491933220-817e4ef0.png", imageAlt: "Emma Rodriguez"
|
||||
},
|
||||
{
|
||||
id: "t-4", name: "David Kim", handle: "@davidgrowth", testimonial: "From positioning to sales pages to email sequences—FIOVA knows my audience and my voice. It's like having a consultant who never sleeps and knows everything about my business.", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3APQi2VazrPHRZFQ4dDd3kCVYaf/professional-headshot-of-a-confident-mal-1772491934204-95314966.png", imageAlt: "David Kim"
|
||||
},
|
||||
{
|
||||
id: "t-5", name: "Lisa Tan", handle: "@lisatalk", testimonial: "The Nurture and Sales agents are game-changers. My conversion sequences are now running on autopilot with personalized AI assistance. Revenue up 40% in 90 days.", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3APQi2VazrPHRZFQ4dDd3kCVYaf/professional-headshot-of-a-confident-fem-1772491934620-c296a480.png?_wi=2", imageAlt: "Lisa Tan"
|
||||
},
|
||||
{
|
||||
id: "t-6", name: "James Wilson", handle: "@jamesscales", testimonial: "Finally, an AI tool built for creators who actually sell. Not a chatbot. Not another dashboard. This is how I scale without burning out.", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3APQi2VazrPHRZFQ4dDd3kCVYaf/professional-headshot-of-a-confident-mal-1772491933963-5512b6e8.png?_wi=2", imageAlt: "James Wilson"
|
||||
id: "t-4", name: "David Kim", handle: "@davidgrowth", testimonial: "From positioning to sales pages to email sequences—FIOVA knows my audience and my voice. It's like having a consultant who never sleeps and knows everything about my business.", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3APQi2VazrPHRZFQ4dDd3kCVYaf/professional-headshot-of-a-confident-mal-1772491934204-95314966.png", imageAlt: "David Kim"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
|
||||
@@ -2,23 +2,23 @@
|
||||
/* Base units */
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
/* --background: #f7f6f7;;
|
||||
--card: #ffffff;;
|
||||
--foreground: #250c0d;;
|
||||
--primary-cta: #b82b40;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--accent: #b90941;;
|
||||
--background-accent: #e8a8b6;; */
|
||||
/* --background: #ffffff;;;;;
|
||||
--card: #f9f9f9;;;;;
|
||||
--foreground: #000612e6;;;;;
|
||||
--primary-cta: #106EFB;;;;;
|
||||
--secondary-cta: #f9f9f9;;;;;
|
||||
--accent: #e2e2e2;;;;;
|
||||
--background-accent: #106EFB;;;;; */
|
||||
|
||||
--background: #f7f6f7;;
|
||||
--card: #ffffff;;
|
||||
--foreground: #250c0d;;
|
||||
--primary-cta: #b82b40;;
|
||||
--primary-cta-text: #f7f6f7;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--secondary-cta-text: #250c0d;;
|
||||
--accent: #b90941;;
|
||||
--background-accent: #e8a8b6;;
|
||||
--background: #ffffff;;;;;
|
||||
--card: #f9f9f9;;;;;
|
||||
--foreground: #000612e6;;;;;
|
||||
--primary-cta: #106EFB;;;;;
|
||||
--primary-cta-text: #ffffff;;;;;
|
||||
--secondary-cta: #f9f9f9;;;;;
|
||||
--secondary-cta-text: #000612e6;;;;;
|
||||
--accent: #e2e2e2;;;;;
|
||||
--background-accent: #106EFB;;;;;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user