@webflow/webflow-cli 1.7.1 → 1.7.3
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/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import type { Metadata } from "next";
|
|
2
2
|
import { Geist, Geist_Mono, Inter } from "next/font/google";
|
|
3
3
|
import "./globals.css";
|
|
4
|
-
import "
|
|
5
|
-
import { DevLinkProvider } from "
|
|
4
|
+
import "@/devlink/global.css";
|
|
5
|
+
import { DevLinkProvider } from "@/devlink/DevLinkProvider";
|
|
6
6
|
|
|
7
7
|
const inter = Inter({
|
|
8
8
|
subsets: ["latin"],
|
|
@@ -34,7 +34,11 @@ export default function RootLayout({
|
|
|
34
34
|
<body
|
|
35
35
|
className={`${geistSans.variable} ${geistMono.variable} ${inter.variable} antialiased`}
|
|
36
36
|
>
|
|
37
|
-
<DevLinkProvider>
|
|
37
|
+
<DevLinkProvider>
|
|
38
|
+
{/* Add here any Navbar or Header you want to be present on all pages */}
|
|
39
|
+
{children}
|
|
40
|
+
{/* Add here any Footer you want to be present on all pages */}
|
|
41
|
+
</DevLinkProvider>
|
|
38
42
|
</body>
|
|
39
43
|
</html>
|
|
40
44
|
);
|