Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b2f67f088f | |||
| 6119515c48 | |||
| e6bd0973ea | |||
| 2fe706223e | |||
| d974626b7b | |||
| 8c9ba2b072 | |||
| d8a8a00a05 | |||
| 52153c8c03 |
@@ -1,12 +1,8 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import "./styles/variables.css";
|
|
||||||
import "./styles/base.css";
|
|
||||||
|
|
||||||
const inter = Inter({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Apex Digital", description: "Digital experiences that drive growth"};
|
title: "Apex Digital", description: "Digital experiences that drive growth"};
|
||||||
@@ -18,7 +14,7 @@ export default function RootLayout({
|
|||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<body className={`${inter.variable}`}>{children}
|
<body className={inter.className}>{children}
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import HeroBillboardRotatedCarousel from "@/components/sections/hero/HeroBillboa
|
|||||||
import FeatureBento from "@/components/sections/feature/FeatureBento";
|
import FeatureBento from "@/components/sections/feature/FeatureBento";
|
||||||
import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
|
import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
|
||||||
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
||||||
import { Sparkles, Zap, Globe, TrendingUp } from "lucide-react";
|
import { Sparkles, Zap, Globe, TrendingUp, Shield, Lock, Cpu } from "lucide-react";
|
||||||
|
|
||||||
export default function HomePage() {
|
export default function HomePage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
@@ -59,6 +59,17 @@ export default function HomePage() {
|
|||||||
{ icon: TrendingUp, label: "Growth", value: "300%" },
|
{ icon: TrendingUp, label: "Growth", value: "300%" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: "Enterprise Security", description: "Bank-grade security with advanced encryption and compliance", bentoComponent: "3d-stack-cards" as const,
|
||||||
|
items: [
|
||||||
|
{ icon: Shield, title: "End-to-End", subtitle: "Encryption", detail: "Military-grade protection" },
|
||||||
|
{ icon: Lock, title: "Zero Trust", subtitle: "Architecture", detail: "Never trust, always verify" },
|
||||||
|
{ icon: Cpu, title: "Compliance", subtitle: "Standard", detail: "SOC 2, GDPR, ISO 27001" },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Global Integration", description: "Connect seamlessly with tools and platforms worldwide", bentoComponent: "map" as const,
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
const testimonials = [
|
const testimonials = [
|
||||||
@@ -174,7 +185,8 @@ export default function HomePage() {
|
|||||||
<FeatureBento
|
<FeatureBento
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "Advanced Analytics", description: "Get detailed insights into your business performance", bentoComponent: "globe"},
|
title: "Advanced Analytics", description: "Get detailed insights into your business performance", bentoComponent: "globe"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: "Real-time Collaboration", description: "Work together seamlessly with your team", bentoComponent: "icon-info-cards", items: [
|
title: "Real-time Collaboration", description: "Work together seamlessly with your team", bentoComponent: "icon-info-cards", items: [
|
||||||
{ icon: Zap, label: "Speed", value: "99.9%" },
|
{ icon: Zap, label: "Speed", value: "99.9%" },
|
||||||
@@ -182,6 +194,16 @@ export default function HomePage() {
|
|||||||
{ icon: TrendingUp, label: "Growth", value: "300%" },
|
{ icon: TrendingUp, label: "Growth", value: "300%" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: "Enterprise Security", description: "Bank-grade security with advanced encryption and compliance", bentoComponent: "3d-stack-cards", items: [
|
||||||
|
{ icon: Shield, title: "End-to-End", subtitle: "Encryption", detail: "Military-grade protection" },
|
||||||
|
{ icon: Lock, title: "Zero Trust", subtitle: "Architecture", detail: "Never trust, always verify" },
|
||||||
|
{ icon: Cpu, title: "Compliance", subtitle: "Standard", detail: "SOC 2, GDPR, ISO 27001" },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Global Integration", description: "Connect seamlessly with tools and platforms worldwide", bentoComponent: "map"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
title="Powerful Features"
|
title="Powerful Features"
|
||||||
description="Everything you need to succeed"
|
description="Everything you need to succeed"
|
||||||
|
|||||||
Reference in New Issue
Block a user