Changeset View
Changeset View
Standalone View
Standalone View
web/e.cash_v2/app/layout.tsx
| // Copyright (c) 2025 The Bitcoin developers | // Copyright (c) 2025 The Bitcoin developers | ||||
| // Distributed under the MIT software license, see the accompanying | // Distributed under the MIT software license, see the accompanying | ||||
| // file COPYING or http://www.opensource.org/licenses/mit-license.php. | // file COPYING or http://www.opensource.org/licenses/mit-license.php. | ||||
| import type { Metadata } from "next"; | import type { Metadata } from "next"; | ||||
| import { Space_Grotesk, Fira_Code } from "next/font/google"; | import { Space_Grotesk, Fira_Code } from "next/font/google"; | ||||
| import "./globals.css"; | import "./globals.css"; | ||||
| import Navbar from "./components/NavBar"; | import Navbar from "./components/Atoms/NavBar"; | ||||
| const spaceGrotesk = Space_Grotesk({ | const spaceGrotesk = Space_Grotesk({ | ||||
| subsets: ["latin"], | subsets: ["latin"], | ||||
| variable: "--font-space-grotesk", | variable: "--font-space-grotesk", | ||||
| }); | }); | ||||
| const firaCode = Fira_Code({ | const firaCode = Fira_Code({ | ||||
| subsets: ["latin"], | subsets: ["latin"], | ||||
| ▲ Show 20 Lines • Show All 55 Lines • Show Last 20 Lines | |||||