diff --git a/src/app/app/alerts/page.tsx b/src/app/app/alerts/page.tsx index f3016dd..713f044 100644 --- a/src/app/app/alerts/page.tsx +++ b/src/app/app/alerts/page.tsx @@ -1,13 +1,29 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import FeatureBento from '@/components/sections/feature/FeatureBento'; -import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern'; -import FaqDouble from '@/components/sections/faq/FaqDouble'; -import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import FeatureBento from "@/components/sections/feature/FeatureBento"; +import FeatureHoverPattern from "@/components/sections/feature/featureHoverPattern/FeatureHoverPattern"; +import FaqDouble from "@/components/sections/faq/FaqDouble"; +import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; import Link from "next/link"; -import { AlertCircle, Target, TrendingUp, CreditCard, Eye, Brain, Lock, Smartphone, Share2, Download, HelpCircle, Bell, Zap, BarChart3, Wallet } from 'lucide-react'; +import { + AlertCircle, + Target, + TrendingUp, + CreditCard, + Eye, + Brain, + Lock, + Smartphone, + Share2, + Download, + HelpCircle, + Bell, + Zap, + BarChart3, + Wallet, +} from "lucide-react"; export default function AlertsPage() { const navItems = [ @@ -15,7 +31,7 @@ export default function AlertsPage() { { name: "Features", id: "features" }, { name: "Pricing", id: "pricing" }, { name: "Contact", id: "contact" }, - { name: "Login", id: "login" } + { name: "Login", id: "login" }, ]; const footerColumns = [ @@ -24,33 +40,33 @@ export default function AlertsPage() { { label: "Features", href: "/features" }, { label: "Pricing", href: "/pricing" }, { label: "Security", href: "#" }, - { label: "Status", href: "#" } - ] + { label: "Status", href: "#" }, + ], }, { title: "Company", items: [ { label: "About", href: "/about" }, { label: "Blog", href: "#" }, { label: "Careers", href: "#" }, - { label: "Contact", href: "/contact" } - ] + { label: "Contact", href: "/contact" }, + ], }, { title: "Resources", items: [ { label: "Help Center", href: "#" }, { label: "Documentation", href: "#" }, { label: "API Reference", href: "#" }, - { label: "Community", href: "#" } - ] + { label: "Community", href: "#" }, + ], }, { title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Cookie Policy", href: "#" }, - { label: "Compliance", href: "#" } - ] - } + { label: "Compliance", href: "#" }, + ], + }, ]; return ( @@ -79,70 +95,61 @@ export default function AlertsPage() {