Skip to content

Commit 8bc008a

Browse files
🚀 feat: add new Pricing page implementation
Creates a new `/pricing` page that incorporates the existing `Pricing` component, enhancing the application's user interface by providing a dedicated pricing section. - Imported necessary CSS styles to ensure the page aligns with the overall design language of the app. - Utilized the `Pricing` component to offer detailed pricing information, improving user experience by providing clear and accessible pricing details.
1 parent a196434 commit 8bc008a

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/* Landing page Stlyes*/
2+
import "@/app/css/additional-styles/utility-patterns.css";
3+
import "@/app/css/additional-styles/range-slider.css";
4+
import "@/app/css/additional-styles/toggle-switch.css";
5+
import "@/app/css/additional-styles/theme.css";
6+
import Pricing from "@/components/pricing";
7+
8+
export default function PricingPage() {
9+
return (
10+
<div className="mt-10">
11+
<Pricing />
12+
</div>
13+
);
14+
}

0 commit comments

Comments
 (0)