diff --git a/apps/web/landing/ClientApp/types.d.ts b/apps/web/landing/ClientApp/declaration.d.ts similarity index 100% rename from apps/web/landing/ClientApp/types.d.ts rename to apps/web/landing/ClientApp/declaration.d.ts diff --git a/apps/web/landing/ClientApp/next.config.js b/apps/web/landing/ClientApp/next.config.js index de556b70d..8884bc233 100644 --- a/apps/web/landing/ClientApp/next.config.js +++ b/apps/web/landing/ClientApp/next.config.js @@ -7,7 +7,7 @@ const { API_URL } = process.env; **/ const nextConfig = { basePath: "/home", - distDir: "../../../../dist/web/landing/ClientApp", + distDir: "../../../../dist/apps/web/landing/ClientApp", nx: { svgr: true, }, diff --git a/apps/web/shell/ClientApp/app/layout.tsx b/apps/web/shell/ClientApp/app/layout.tsx index c2aade8e2..cf2b0a87c 100644 --- a/apps/web/shell/ClientApp/app/layout.tsx +++ b/apps/web/shell/ClientApp/app/layout.tsx @@ -1,14 +1,19 @@ +import { Inter } from "@next/font/google"; import Link from "next/link"; import React from "react"; import "./globals.css"; +const inter = Inter({ + variable: "--font-inter", +}); + export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( - +