diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 3ccb8ed..3676d45 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -1,6 +1,5 @@ "use client"; -import Link from "next/link"; import { CheckCircle, Lightbulb, Shield, TrendingUp, Users, Zap } from "lucide-react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 06af5f9..a3b2ece 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,6 +1,5 @@ "use client"; -import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; @@ -84,9 +83,9 @@ export default function ContactPage() { title="Latest Insights & News" description="Stay updated with the latest trends, expert analyses, and company news from the world of software and technology." blogs={[ - { id: "1", category: "Artificial Intelligence", title: "The Rise of Generative AI in Business", excerpt: "Exploring how generative AI is transforming industries and creating new opportunities.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/a-visually-engaging-image-for-a-blog-pos-1771432894884-3a87afd8.png", authorName: "Alice Green", date: "February 2, 2024" }, - { id: "2", category: "Cloud Computing", title: "Maximizing Efficiency with Hybrid Cloud Strategies", excerpt: "A deep dive into optimizing performance and cost with hybrid cloud deployments.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/an-image-representing-cloud-computing-be-1771432906344-ec6edef1.png", authorName: "Bob Blue", date: "January 28, 2024" }, - { id: "3", category: "Cybersecurity", title: "Protecting Your Data in a Digital World", excerpt: "Essential strategies for businesses to enhance cybersecurity and mitigate risks.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/a-strong-secure-looking-image-for-a-cybe-1771432915426-e3fe9934.png", authorName: "Charlie Red", date: "January 20, 2024" } + { id: "1", category: "Artificial Intelligence", title: "The Rise of Generative AI in Business", excerpt: "Exploring how generative AI is transforming industries and creating new opportunities.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/a-visually-engaging-image-for-a-blog-pos-1771432894884-3a87afd8.png", authorName: "Alice Green", date: "February 2, 2024", authorAvatar: "/placeholders/avatar.png" }, + { id: "2", category: "Cloud Computing", title: "Maximizing Efficiency with Hybrid Cloud Strategies", excerpt: "A deep dive into optimizing performance and cost with hybrid cloud deployments.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/an-image-representing-cloud-computing-be-1771432906344-ec6edef1.png", authorName: "Bob Blue", date: "January 28, 2024", authorAvatar: "/placeholders/avatar.png" }, + { id: "3", category: "Cybersecurity", title: "Protecting Your Data in a Digital World", excerpt: "Essential strategies for businesses to enhance cybersecurity and mitigate risks.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/a-strong-secure-looking-image-for-a-cybe-1771432915426-e3fe9934.png", authorName: "Charlie Red", date: "January 20, 2024", authorAvatar: "/placeholders/avatar.png" } ]} animationType="slide-up" textboxLayout="default" @@ -98,6 +97,7 @@ export default function ContactPage() {