diff --git a/src/app/cultura/page.tsx b/src/app/cultura/page.tsx new file mode 100644 index 0000000..ffb9fe7 --- /dev/null +++ b/src/app/cultura/page.tsx @@ -0,0 +1,99 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import BlogCardOne from '@/components/sections/blog/BlogCardOne'; +import SplitAbout from '@/components/sections/about/SplitAbout'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import { Newspaper, AlertCircle, Star, Palette, MapPin, Clock, MessageSquare } from 'lucide-react'; + +export default function CulturePage() { + return ( + + + + + +
+ +
+ + +
+ ); +} diff --git a/src/app/deportes/page.tsx b/src/app/deportes/page.tsx index 0e1dd41..1d10d38 100644 --- a/src/app/deportes/page.tsx +++ b/src/app/deportes/page.tsx @@ -5,7 +5,6 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS import BlogCardOne from '@/components/sections/blog/BlogCardOne'; import SplitAbout from '@/components/sections/about/SplitAbout'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; -import Link from 'next/link'; import { Newspaper, AlertCircle, Star, Trophy, MapPin, Clock, MessageSquare } from 'lucide-react'; export default function SportsPage() { @@ -25,9 +24,12 @@ export default function SportsPage() { @@ -91,4 +96,4 @@ export default function SportsPage() { ); -} \ No newline at end of file +} diff --git a/src/app/internacional/page.tsx b/src/app/internacional/page.tsx new file mode 100644 index 0000000..f736fa8 --- /dev/null +++ b/src/app/internacional/page.tsx @@ -0,0 +1,99 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import BlogCardOne from '@/components/sections/blog/BlogCardOne'; +import SplitAbout from '@/components/sections/about/SplitAbout'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import { Newspaper, AlertCircle, Star, Globe, MapPin, Clock, MessageSquare } from 'lucide-react'; + +export default function InternationalPage() { + return ( + + + + + +
+ +
+ + +
+ ); +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6af1731..a2c26b6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,50 +1,20 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const mulish = Mulish({ - variable: "--font-mulish", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "NoticiasDigitales - Noticias Actualizadas", - description: "Tu fuente confiable de noticias en deportes, tecnología, política, cultura e internacional. Mantente informado con reportajes de calidad.", - keywords: "noticias, periodismo, actualidad, reportajes, deportes, tecnología, política, cultura, internacional", - openGraph: { - title: "NoticiasDigitales", - description: "Tu fuente confiable de noticias en deportes, tecnología, política, cultura e internacional.", - url: "https://noticiasdigitales.com", - siteName: "NoticiasDigitales", - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "NoticiasDigitales", - description: "Noticias actualizadas y análisis profundo", - }, - robots: { - index: true, - follow: true, - }, -}; + title: "NoticiasDigitales", description: "Tu fuente confiable de noticias de calidad"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}