diff --git a/public/connected-devices.png b/public/connected-devices.png new file mode 100644 index 0000000..4d6c622 Binary files /dev/null and b/public/connected-devices.png differ diff --git a/public/connected-dots.png b/public/connected-dots.png new file mode 100644 index 0000000..02f5992 Binary files /dev/null and b/public/connected-dots.png differ diff --git a/public/hotspot-waves.png b/public/hotspot-waves.png new file mode 100644 index 0000000..dfd7972 Binary files /dev/null and b/public/hotspot-waves.png differ diff --git a/public/hotspot.png b/public/hotspot.png new file mode 100644 index 0000000..ac6c6a6 Binary files /dev/null and b/public/hotspot.png differ diff --git a/public/kuzco-logo.png b/public/kuzco-logo.png new file mode 100644 index 0000000..a918400 Binary files /dev/null and b/public/kuzco-logo.png differ diff --git a/public/latitude.png b/public/latitude.png new file mode 100644 index 0000000..fe801ce Binary files /dev/null and b/public/latitude.png differ diff --git a/public/longitude.png b/public/longitude.png new file mode 100644 index 0000000..729c586 Binary files /dev/null and b/public/longitude.png differ diff --git a/public/tech-info.png b/public/tech-info.png new file mode 100644 index 0000000..6070740 Binary files /dev/null and b/public/tech-info.png differ diff --git a/src/app/layout.module.css b/src/app/layout.module.css new file mode 100644 index 0000000..4f09f41 --- /dev/null +++ b/src/app/layout.module.css @@ -0,0 +1,3 @@ +.overall { + text-rendering: geometricPrecision; +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 288677b..ecf57d3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,13 +1,22 @@ import { GAScript } from "@/components/GAScript" import { GATracker } from "@/components/GATracker" import { Header } from "@/components/Header" -import { HotspotsMap } from "@/components/HotspotsMap" import { Providers } from "@/components/Providers" import "@/styles/tailwind.css" import "focus-visible" +import { DM_Sans } from "next/font/google" import Head from "next/head" import { Suspense } from "react" import "react-tooltip/dist/react-tooltip.css" +import styles from "./layout.module.css" +import { HotspotsMap } from "./new/HotspotsMap" +import { Nav } from "./new/Nav/Nav" + +const dm_sans = DM_Sans({ + subsets: ["latin"], + display: "swap", + variable: "--font-dm-sans", +}) export const metadata = { manifest: "/manifest.json", @@ -55,7 +64,11 @@ export default function RootLayout({ children: React.ReactNode }) { return ( - +
+