Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3,023 changes: 2,108 additions & 915 deletions package-lock.json

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,15 @@
"dependencies": {
"@headlessui/react": "^2.0.3",
"@heroicons/react": "^2.1.3",
"framer-motion": "^12.23.25",
"lucide-react": "^0.556.0",
"next": "^14.2.33",
"next-themes": "^0.3.0",
"openai": "^6.7.0",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.51.4"
"react-hook-form": "^7.51.4",
"recharts": "^3.5.1"
},
"devDependencies": {
"@types/node": "^20",
Expand Down
2 changes: 1 addition & 1 deletion src/app/faq/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Container } from "@/components/Container";
import { Faq } from "@/components/Faq";
import Faq from "@/components/FaqItem";
import { SectionTitle } from "@/components/SectionTitle";

export default function FAQPage() {
Expand Down
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { SectionTitle } from "@/components/SectionTitle";
import { Benefits } from "@/components/Benefits";
import { Video } from "@/components/Video";
import { Testimonials } from "@/components/Testimonials";
import { Faq } from "@/components/Faq";
import { Faq } from "@/components/FaqItem";
import { Cta } from "@/components/Cta";

import { benefitOne, benefitTwo } from "@/components/data";
Expand Down
81 changes: 0 additions & 81 deletions src/components/Faq.tsx

This file was deleted.

Loading