forked from UKSOURCE/hailearning.edu.vn
feat: refactor service API schema and update layout structure
This commit is contained in:
@@ -1,9 +1,8 @@
|
||||
import type { Metadata } from "next";
|
||||
import "./globals.css";
|
||||
|
||||
|
||||
import Header from "./components/Header";
|
||||
import Footer from "./components/Footer";
|
||||
// import Header from "./components/Header";
|
||||
// import Footer from "./components/Footer";
|
||||
import Loader from "./components/Loader";
|
||||
import BackToTop from "./components/BackToTop";
|
||||
import MouseCursor from "./components/MouseCursor";
|
||||
@@ -24,7 +23,7 @@ export default function RootLayout({
|
||||
<head>
|
||||
{/* Favicon */}
|
||||
<link rel="shortcut icon" href="/assets/img/favicon.png" />
|
||||
|
||||
|
||||
{/* Bootstrap min.css */}
|
||||
<link rel="stylesheet" href="/assets/css/bootstrap.min.css" />
|
||||
{/* All Min Css */}
|
||||
@@ -35,7 +34,7 @@ export default function RootLayout({
|
||||
<link rel="stylesheet" href="/assets/css/magnific-popup.css" />
|
||||
{/* MeanMenu.css */}
|
||||
<link rel="stylesheet" href="/assets/css/meanmenu.css" />
|
||||
{/* Odometer.css */}
|
||||
{/* Odometer.css */}
|
||||
<link rel="stylesheet" href="/assets/css/odometer.css" />
|
||||
{/* Swiper Bundle.css */}
|
||||
<link rel="stylesheet" href="/assets/css/swiper-bundle.min.css" />
|
||||
@@ -44,22 +43,37 @@ export default function RootLayout({
|
||||
{/* Main.css */}
|
||||
<link rel="stylesheet" href="/assets/css/main.css" />
|
||||
</head>
|
||||
<body className="smooth-scroll-yes">
|
||||
<body className="smooth-scroll-yes">
|
||||
<Loader />
|
||||
<BackToTop />
|
||||
<MouseCursor />
|
||||
<Header />
|
||||
|
||||
{/* <Header /> */}
|
||||
|
||||
{children}
|
||||
|
||||
<Footer />
|
||||
|
||||
{/* <Footer /> */}
|
||||
|
||||
{/* Scripts */}
|
||||
<Script src="/assets/js/jquery-3.7.1.min.js" strategy="beforeInteractive" />
|
||||
<Script src="/assets/js/viewport.jquery.js" strategy="afterInteractive" />
|
||||
<Script src="/assets/js/bootstrap.bundle.min.js" strategy="afterInteractive" />
|
||||
<Script src="/assets/js/jquery.nice-select.min.js" strategy="afterInteractive" />
|
||||
<Script src="/assets/js/jquery.waypoints.js" strategy="afterInteractive" />
|
||||
<Script
|
||||
src="/assets/js/jquery-3.7.1.min.js"
|
||||
strategy="beforeInteractive"
|
||||
/>
|
||||
<Script
|
||||
src="/assets/js/viewport.jquery.js"
|
||||
strategy="afterInteractive"
|
||||
/>
|
||||
<Script
|
||||
src="/assets/js/bootstrap.bundle.min.js"
|
||||
strategy="afterInteractive"
|
||||
/>
|
||||
<Script
|
||||
src="/assets/js/jquery.nice-select.min.js"
|
||||
strategy="afterInteractive"
|
||||
/>
|
||||
<Script
|
||||
src="/assets/js/jquery.waypoints.js"
|
||||
strategy="afterInteractive"
|
||||
/>
|
||||
<Script src="/assets/js/odometer.min.js" strategy="afterInteractive" />
|
||||
<Script
|
||||
src="/assets/js/swiper-bundle.min.js"
|
||||
|
||||
Reference in New Issue
Block a user