Files
website/apps/website/app/page.tsx
Mauricio Siu 4501b700a2 feat: restructure pricing section and create dedicated pricing page
- Removed the Pricing component from the homepage and created a new dedicated Pricing page.
- Updated navigation links to point to the new Pricing page instead of the homepage section.
- Enhanced the Pricing component with an animated grid pattern for improved visual appeal.
2026-03-10 11:30:09 -06:00

35 lines
1013 B
TypeScript

import { CallToAction } from "@/components/CallToAction";
import { Faqs } from "@/components/Faqs";
import { Hero } from "@/components/Hero";
import { Testimonials } from "@/components/Testimonials";
import { FirstFeaturesSection } from "@/components/first-features";
import { SecondaryFeaturesSections } from "@/components/secondary-features";
import { Sponsors } from "@/components/sponsors";
import { StatsSection } from "@/components/stats";
import type { Metadata } from "next";
export const metadata: Metadata = {
title: {
absolute: "Dokploy - Deploy your applications with ease",
},
description:
"Open-source self-hostable Platform as a Service (PaaS) that simplifies the deployment and management of applications and databases",
};
export default function Home() {
return (
<div>
<main>
<Hero />
<FirstFeaturesSection />
<SecondaryFeaturesSections />
<StatsSection />
<Testimonials />
<Faqs />
{/* <Sponsors /> */}
<CallToAction />
</main>
</div>
);
}