web/src/app/pricing/page.jsx

21 lines
490 B
React
Raw Normal View History

2024-01-04 04:03:16 +03:30
"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;