mirror of
https://github.com/arkorty/Reduce.git
synced 2026-03-18 00:47:10 +00:00
Initial commit
This commit is contained in:
20
frontend/app/layout.js
Normal file
20
frontend/app/layout.js
Normal file
@@ -0,0 +1,20 @@
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import dotenv from "dotenv";
|
||||
|
||||
dotenv.config();
|
||||
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata = {
|
||||
title: "URL Shortener",
|
||||
description: "A simple URL shortener application",
|
||||
};
|
||||
|
||||
export default function RootLayout({ children }) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user