Quiz-PDF/Frontend/app/(public)/whatsnew/page.tsx

33 lines
1.0 KiB
TypeScript

import Footer from "@/components/Footer";
import Background from "@/components/Utilities/Background";
import Spacer from "@/components/Utilities/Spacer";
import FormLeftDescriptionRightContactUs from "@/sections/ContactUs/FormLeftDescriptionRightContactUs";
import SolidBackgrondIcon from "@/sections/IconsSections/SolidBackgrondIcon";
import PageHeader from "@/sections/PageHeader";
import React from "react";
const page = () => {
return (
<div className="flex flex-col h-full w-full bg-base-100 ">
<Background>
<PageHeader
title="What's New"
subtitle={
<>
{" "}
<h2 className="text-base-content text-2xl font-medium content text-center max-w-6xl mx-auto px-6">
Take a look at all the cool features we&apos;ve built.
</h2>
</>
}
/>
<SolidBackgrondIcon />
<Spacer className="mt-auto" />
<Footer />
</Background>
</div>
);
};
export default page;