21 lines
490 B
JavaScript
21 lines
490 B
JavaScript
"use client";
|
|
import Navbar from "@comp/landingComponents/Navbar";
|
|
import Footer from "@comp/landingComponents/Footer/page";
|
|
import React from "react";
|
|
import PricingHero from "@comp/landingComponents/PricingHero/page";
|
|
|
|
const Pricing = () => {
|
|
return (
|
|
<div className="relative z-0 bg-black">
|
|
<div className="bg-hero-pattern bg-cover bg-no-repeat bg-center">
|
|
<Navbar />
|
|
<PricingHero />
|
|
</div>
|
|
|
|
<Footer />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Pricing;
|