update 16/01

This commit is contained in:
2026-01-16 17:04:10 +07:00
parent b921d73f73
commit ddb60bd5f9
9 changed files with 269 additions and 89 deletions

View File

@@ -2,6 +2,7 @@ import type { Metadata } from "next";
import type { ReactNode } from 'react';
import Header from "@/components/other/header";
import Footer from "@/components/other/footer";
import TooltipProvider from "@/components/providers/TooltipProvider";
import '../styles/globals.css';
export const metadata: Metadata = {
@@ -18,8 +19,11 @@ export default function RootLayout({
<html lang="vi">
<body>
<Header />
{children}
<TooltipProvider>
{children}
</TooltipProvider>
<Footer />
</body>