create-web-kit 25.828.1844 → 25.829.1036

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.
@@ -1,10 +1,14 @@
1
- import type { Metadata } from "next";
2
- import { Inter } from "next/font/google";
3
- import "./globals.css";
4
1
  import { Providers } from "@/components/providers";
2
+ import type { Metadata } from "next";
3
+ import { Geist } from "next/font/google";
4
+ import Script from "next/script";
5
5
 
6
- const inter = Inter({ subsets: ["latin"] });
7
-
6
+ import pkg from "../../package.json";
7
+ import "./globals.css";
8
+ const font = Geist({
9
+ variable: "--font-geist-sans",
10
+ subsets: ["latin"],
11
+ });
8
12
  export const metadata: Metadata = {
9
13
  title: pkg.seo.title,
10
14
  description: pkg.seo.description,
@@ -73,7 +77,6 @@ export default function RootLayout({
73
77
  strategy="beforeInteractive"
74
78
  />
75
79
  )}
76
- </head>
77
80
  {/* eslint-disable-next-line @next/next/no-before-interactive-script-outside-document */}
78
81
  <script
79
82
  dangerouslySetInnerHTML={{
@@ -89,7 +92,7 @@ export default function RootLayout({
89
92
  }}
90
93
  />
91
94
  </head>
92
- <body className={inter.className} suppressHydrationWarning>
95
+ <body className={font.className} suppressHydrationWarning>
93
96
  <Providers>{children}</Providers>
94
97
  </body>
95
98
  </html>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-web-kit",
3
- "version": "25.0828.1844",
3
+ "version": "25.0829.1036",
4
4
  "description": "A powerful scaffolding tool for creating modern frontend projects with Vue, Next.js, and Electron templates",
5
5
  "type": "module",
6
6
  "bin": {