-
- Quarterly Plan
-
-
Startup Booster Package
-
- $4997/quarter
-
-
Billed quarterly, 3-month minimum
-
-
-
What's Included:
-
- {[
- "120 hours of development time per quarter",
- "Bi-weekly strategy calls",
- "Priority bug fixes and feature updates",
- "Quarterly performance review",
- "Dedicated project manager",
- "Scalability planning and implementation",
- "24/7 emergency support"
- ].map((feature, index) => (
- -
-
-
-
- {feature}
-
- ))}
-
-
+ return (
+
+
+
+ Quarterly Plan
+
+ Startup Booster Package
+
+
+ $4997/quarter
+
+
Billed quarterly, 3-month minimum
+
+
+
+ What's Included:
+
+
+ {[
+ "120 hours of development time per quarter",
+ "Bi-weekly strategy calls",
+ "Priority bug fixes and feature updates",
+ "Quarterly performance review",
+ "Dedicated project manager",
+ "Scalability planning and implementation",
+ "24/7 emergency support",
+ ].map((feature, index) => (
+ -
+
+
+
+ {feature}
+
+ ))}
+
+
+
-
+
-
-
-
- )
-}
\ No newline at end of file
+
+
+ );
+};
diff --git a/components/Team/Team.tsx b/components/Team/Team.tsx
index 8389a99..a67730c 100644
--- a/components/Team/Team.tsx
+++ b/components/Team/Team.tsx
@@ -1,5 +1,5 @@
"use client";
-import Container from "../Container";
+import Container from "../shared/Container";
import {
TopLeftShiningLight,
TopRightShiningLight,
diff --git a/components/Accordian.tsx b/components/main/accordian/Accordian.tsx
similarity index 88%
rename from components/Accordian.tsx
rename to components/main/accordian/Accordian.tsx
index 0f72ac5..f3c331c 100644
--- a/components/Accordian.tsx
+++ b/components/main/accordian/Accordian.tsx
@@ -1,8 +1,8 @@
import { Process } from '@/data/process'
-import Container from './Container'
+import Container from '../../shared/Container'
import AccordionItem from './AccordianItem'
-import Topic from './Topic'
+import Topic from '../../shared/Topic'
export default function Accordian() {
return (
diff --git a/components/AccordianItem.tsx b/components/main/accordian/AccordianItem.tsx
similarity index 100%
rename from components/AccordianItem.tsx
rename to components/main/accordian/AccordianItem.tsx
diff --git a/components/Bottom.tsx b/components/main/bottom/Bottom.tsx
similarity index 97%
rename from components/Bottom.tsx
rename to components/main/bottom/Bottom.tsx
index faf650b..3e9a14a 100644
--- a/components/Bottom.tsx
+++ b/components/main/bottom/Bottom.tsx
@@ -1,6 +1,6 @@
/* eslint-disable @next/next/no-img-element */
import Link from "next/link"
-import Container from "./Container"
+import Container from "../../shared/Container"
export const Bottom = () => {
return (
diff --git a/components/Contact.tsx b/components/main/contact/Contact.tsx
similarity index 98%
rename from components/Contact.tsx
rename to components/main/contact/Contact.tsx
index 2ba6f30..0d284e7 100644
--- a/components/Contact.tsx
+++ b/components/main/contact/Contact.tsx
@@ -1,8 +1,8 @@
"use client"
import { useState, FormEvent } from 'react';
-import Container from './Container';
-import Topic from './Topic';
+import Container from '../../shared/Container';
+import Topic from '../../shared/Topic';
import Image from 'next/image';
diff --git a/components/main/Hero.tsx b/components/main/hero/Hero.tsx
similarity index 98%
rename from components/main/Hero.tsx
rename to components/main/hero/Hero.tsx
index afa72bc..d0ed988 100644
--- a/components/main/Hero.tsx
+++ b/components/main/hero/Hero.tsx
@@ -8,7 +8,7 @@ import {
TopLeftShiningLight,
TopRightShiningLight,
} from "@/components/farmui/ShinyLights";
-import Container from "../Container";
+import Container from "../../shared/Container";
import Link from "next/link";
export default function FUIDarkHeroSectionWithScrolls() {
diff --git a/components/Navbar.tsx b/components/main/navbar/Navbar.tsx
similarity index 98%
rename from components/Navbar.tsx
rename to components/main/navbar/Navbar.tsx
index 5c5a24b..f949f1d 100644
--- a/components/Navbar.tsx
+++ b/components/main/navbar/Navbar.tsx
@@ -1,7 +1,7 @@
"use client";
import { useState } from "react";
import Link from "next/link";
-import Container from "./Container";
+import Container from "../../shared/Container";
import { menuItems } from "@/data/menuitems";
const Navigation = () => {
diff --git a/components/Services.tsx b/components/main/services/Services.tsx
similarity index 96%
rename from components/Services.tsx
rename to components/main/services/Services.tsx
index f7a865d..e12a697 100644
--- a/components/Services.tsx
+++ b/components/main/services/Services.tsx
@@ -1,7 +1,7 @@
/* eslint-disable @next/next/no-img-element */
import { servicesData } from "@/data/service";
-import Container from "./Container";
-import Topic from "./Topic";
+import Container from "../../shared/Container";
+import Topic from "../../shared/Topic";
function Services() {
return (
diff --git a/components/Team.tsx b/components/main/team/Team.tsx
similarity index 97%
rename from components/Team.tsx
rename to components/main/team/Team.tsx
index 27e45c7..f873f05 100644
--- a/components/Team.tsx
+++ b/components/main/team/Team.tsx
@@ -1,8 +1,8 @@
/* eslint-disable @next/next/no-img-element */
"use client"
import { teamData } from "@/data/process";
-import Container from "./Container";
-import Topic from "./Topic";
+import Container from "../../shared/Container";
+import Topic from "../../shared/Topic";
import { useRouter } from "next/navigation";
import { TeamMember } from "@/data/TeamMember";
diff --git a/components/Container.tsx b/components/shared/Container.tsx
similarity index 100%
rename from components/Container.tsx
rename to components/shared/Container.tsx
diff --git a/components/Topic.tsx b/components/shared/Topic.tsx
similarity index 100%
rename from components/Topic.tsx
rename to components/shared/Topic.tsx