diff --git a/client/src/components/Footer.tsx b/client/src/components/Footer.tsx index 4947598..05749e9 100644 --- a/client/src/components/Footer.tsx +++ b/client/src/components/Footer.tsx @@ -1,5 +1,5 @@ import React from 'react' -import { Github, Facebook, Youtube, Twitter, Instagram, Copyright } from 'lucide-react'; +import { Github, Facebook, Youtube, Twitter, Instagram} from 'lucide-react'; const Footer = () => { return ( diff --git a/client/src/components/Pricing.tsx b/client/src/components/Pricing.tsx new file mode 100644 index 0000000..a53b354 --- /dev/null +++ b/client/src/components/Pricing.tsx @@ -0,0 +1,68 @@ +import React from 'react' + +const Pricing = () => { + return ( +
+
+
+
+

Simple no-tricks pricing

+

Distinctio et nulla eum soluta et neque labore quibusdam. Saepe et quasi iusto modi velit ut non voluptas in. Explicabo id ut laborum.

+
+
+
+

Lifetime membership

+

Lorem ipsum dolor sit amet consect etur adipisicing elit. Itaque amet indis perferendis blanditiis repellendus etur quidem assumenda.

+
+

What’s included

+
+
+
    +
  • + + Private forum access +
  • +
  • + + Member resources +
  • +
  • + + Entry to annual conference +
  • +
  • + + Official member t-shirt +
  • +
+
+
+
+
+

Pay once, own it forever

+

+ $349 + USD +

+ Get access +

Invoices and receipts available for easy company reimbursement

+
+
+
+
+
+
+ +
+ ) +} + +export default Pricing diff --git a/client/src/pages/LandingPage.tsx b/client/src/pages/LandingPage.tsx index 42d06d5..1d94ebd 100644 --- a/client/src/pages/LandingPage.tsx +++ b/client/src/pages/LandingPage.tsx @@ -3,6 +3,7 @@ import { useNavigate } from 'react-router-dom'; import Navbar from '../components/Navbar'; import Testimonial from '../components/Testimonial'; import FAQ_PART from "../components/FAQ_Part" +import Pricing from '@/components/Pricing'; import Footer from '../components/Footer'; const LandingPage: React.FC = () => { @@ -89,7 +90,15 @@ const LandingPage: React.FC = () => {
- {/* Here Starts The Testimonial SECTION // CAUTION :IT CAN BE SHIFTED PLEASE MOVE THE COMMENTS ALONG WITH THE CODE */} + {/* Here ENDs The Testimonial SECTION // CAUTION :IT CAN BE SHIFTED PLEASE MOVE THE COMMENTS ALONG WITH THE CODE */} + + + + {/* Here Starts The Pricing SECTION // CAUTION :IT CAN BE SHIFTED PLEASE MOVE THE COMMENTS ALONG WITH THE CODE */} +
+ +
+ {/* Here ENDs The Pricing SECTION // CAUTION :IT CAN BE SHIFTED PLEASE MOVE THE COMMENTS ALONG WITH THE CODE */} {/* Here Starts The FAQ SECTION // CAUTION :IT CAN BE SHIFTED PLEASE MOVE THE COMMENTS ALONG WITH THE CODE */} diff --git a/client/src/router.tsx b/client/src/router.tsx index 14be572..43047ab 100644 --- a/client/src/router.tsx +++ b/client/src/router.tsx @@ -2,7 +2,6 @@ import { createBrowserRouter } from 'react-router-dom'; import App from './App.tsx'; import CSSBattles from './pages/CSSBattles.tsx'; - const router = createBrowserRouter([ { path: '/', diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..5d85566 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,6 @@ +{ + "name": "devforces", + "lockfileVersion": 3, + "requires": true, + "packages": {} +}