diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index eb3395a..bb317c5 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,55 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Source_Sans_3 } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const sourceSans3 = Source_Sans_3({
- variable: "--font-source-sans-3", subsets: ["latin"],
-});
+const inter = Inter({ variable: "--font-inter", subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Cosmic Atlas - Explore the Holographic Universe", description: "Navigate galaxies, stars, and planets through an interactive holographic universe. Discover celestial wonders with real-time cosmic data and recent discoveries.", keywords: "astronomy, space exploration, galaxies, exoplanets, cosmos, universe, celestial objects", metadataBase: new URL("https://cosmic-atlas.example.com"),
- alternates: {
- canonical: "https://cosmic-atlas.example.com"
- },
- openGraph: {
- title: "Cosmic Atlas - Interactive Universe Explorer", description: "Explore the cosmos through a futuristic holographic interface. Discover galaxies, stars, and cosmic phenomena.", url: "https://cosmic-atlas.example.com", siteName: "Cosmic Atlas", type: "website"
- },
- twitter: {
- card: "summary_large_image", title: "Cosmic Atlas - The Holographic Universe", description: "Your gateway to cosmic exploration through advanced 3D visualization and real-time astronomical data."
- },
- robots: {
- index: true,
- follow: true
- }
-};
+ title: "Cosmic Atlas", description: "Navigate the cosmic atlas and explore galaxies, stars, and planets"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+ {children}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index f5533c6..2920b4d 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -12,6 +12,14 @@ import FooterCard from '@/components/sections/footer/FooterCard';
import { Zap, Star, Globe, Telescope, Clock, Lightbulb, Twitter, Github, Linkedin } from 'lucide-react';
export default function LandingPage() {
+ const handleFaqButtonClick = () => {
+ console.log('FAQ Button clicked');
+ };
+
+ const handleFooterSocialClick = (platform: string) => {
+ console.log(`${platform} clicked`);
+ };
+
return (