import './globals.css'; import type { Metadata } from 'next'; import Image from 'next/image'; import { Inter } from 'next/font/google'; import Navigation from './navigation'; import MobileNavigation from './mobile-navigation'; import ReduxProvider from '@/redux/provider'; const inter = Inter({ subsets: ['latin'] }); export const metadata: Metadata = { title: 'Geothermie Atlas', description: 'Generated by GeoSphere Austria', }; export default function RootLayout({ children }: { children: React.ReactNode }) { return (
GeoSphere Austria Logo Stadt Wien Logo Geothermie Atlas
{children} ); }