feat: add pricing page with API integration and dynamic rendering

This commit is contained in:
LNHA
2026-02-03 14:53:10 +07:00
parent 0398135018
commit 6c5c92c9d9
7 changed files with 282 additions and 345 deletions

View File

@@ -2,8 +2,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";
@@ -48,11 +48,11 @@ export default function RootLayout({
<Loader />
<BackToTop />
<MouseCursor />
<Header />
{/* <Header /> */}
{children}
<Footer />
{/* <Footer /> */}
{/* Scripts */}
<Script src="/assets/js/jquery-3.7.1.min.js" strategy="beforeInteractive" />