use docker
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-11-03 21:03:28 +08:00
parent a528b78e43
commit 5cf100c111
28 changed files with 145 additions and 189 deletions

View File

@@ -1,5 +1,4 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import type { Viewport } from "next";
import { NextIntlClientProvider } from "next-intl";
@@ -9,16 +8,6 @@ export const viewport: Viewport = {
initialScale: 1.0,
};
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Learn Languages",
description: "A Website to Learn Languages",
@@ -32,7 +21,7 @@ export default async function RootLayout({
return (
<html lang="en">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
className={`antialiased`}
>
<NextIntlClientProvider>{children}</NextIntlClientProvider>
</body>