create-nocdn-app 0.0.3 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-nocdn-app",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "description": "Scaffold Next.js projects the nocdn way",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -19,6 +19,7 @@
19
19
  --font-mono: var(--font-geist-mono);
20
20
  --font-pp-supply-mono: "PP Supply Mono", monospace;
21
21
  --font-jetbrains-mono: "JetBrains Mono", monospace;
22
+ --font-inter: "Inter", sans-serif;
22
23
  --color-sidebar-ring: var(--sidebar-ring);
23
24
  --color-sidebar-border: var(--sidebar-border);
24
25
  --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
@@ -1,5 +1,5 @@
1
1
  import type { Metadata } from "next";
2
- import { Geist, Geist_Mono } from "next/font/google";
2
+ import { Geist, Geist_Mono, Inter } from "next/font/google";
3
3
  import "./globals.css";
4
4
 
5
5
  const geistSans = Geist({
@@ -12,6 +12,11 @@ const geistMono = Geist_Mono({
12
12
  subsets: ["latin"],
13
13
  });
14
14
 
15
+ const inter = Inter({
16
+ variable: "--font-inter",
17
+ subsets: ["latin"],
18
+ });
19
+
15
20
  export const metadata: Metadata = {
16
21
  title: "nocdn app template",
17
22
  description:
@@ -26,7 +31,7 @@ export default function RootLayout({
26
31
  return (
27
32
  <html lang="en">
28
33
  <body
29
- className={`${geistSans.variable} ${geistMono.variable} antialiased bg-background`}
34
+ className={`${geistSans.variable} ${geistMono.variable} ${inter.variable} antialiased bg-background`}
30
35
  >
31
36
  {children}
32
37
  </body>