chore(web): init web project

This commit is contained in:
2026-03-10 11:00:14 +08:00
parent 4fce1c6bdd
commit 4d43ebd21e
18 changed files with 355 additions and 4 deletions

39
apps/web/app/layout.tsx Normal file
View File

@@ -0,0 +1,39 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono, Noto_Sans, Saira } from "next/font/google";
import "./globals.css";
const fontSaira = Saira({
variable: "--font-saira",
subsets: ["latin"],
})
const fontNotoSans = Noto_Sans({
variable: "--font-noto-sans",
subsets: ["latin"],
})
const fontMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Helios EVCS",
description: "A modern EV charging station management system built with Next.js, Drizzle ORM, and OCPP.",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body
className={`${fontSaira.variable} ${fontNotoSans.variable} ${fontMono.variable} antialiased`}
>
{children}
</body>
</html>
);
}