feat: create base fsd-shadcn-payload repo

This commit is contained in:
2025-10-15 16:38:58 +03:00
parent 6cd36bc8b4
commit b8b9994997
93 changed files with 15938 additions and 250 deletions

View File

@@ -0,0 +1,26 @@
import type { Metadata } from "next";
import { Fira_Sans } from "next/font/google";
import "./globals.css";
const firaSans = Fira_Sans({
variable: "--font-fira-sans",
weight: ["400", "500", "600", "700", "100", "200", "300", "800", "900"],
subsets: ["latin", "cyrillic"],
});
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="ru">
<body className={`${firaSans.variable} antialiased`}>{children}</body>
</html>
);
}