Skip to content

Commit

Permalink
News section
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasInk committed Jun 20, 2022
1 parent fd325dc commit 30cfa43
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 38 deletions.
Binary file added public/assets/images/TechCrunch.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 4 additions & 8 deletions src/components/Pricing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,11 @@ const Pricing = () => {
className={`h-1 w-full bg-primary my-0 py-0 rounded-t`}
></div>
<ul className={`w-full text-center text-base font-bold`}>
{secondPlan?.features.map((feature) => (
<li
className={`border-b py-4`}
key={`${secondPlan?.name}-${feature}`}
>
{feature}
</li>
))}
<img src={secondPlan?.icon} style={{margin: "10px"}}></img>
</ul>
<ul className={`w-full text-center text-base font-bold`}>
<a href='https://techcrunch.com/2022/06/16/brain-data-startup-rune-labs-gets-fda-clearance-for-apple-watch-based-parkinsons-tracker/'>Read More</a>
</ul>
</div>
<div
className={`flex-none mt-auto bg-background rounded-b rounded-t-none overflow-hidden shadow p-6`}
Expand Down
42 changes: 14 additions & 28 deletions src/config/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,41 +79,27 @@
]
},
"pricing": {
"title": "Pricing",
"title": "News",
"items": [
{
"name": "Free",
"price": "$0",
"priceDetails": "for one user",
"features": [
"1 user",
"Basic Support",
"1 GB of storage",
"Email support"
]
"name": "",
"price": "",
"priceDetails": "",
"features": []
},
{
"name": "Pro",
"price": "$15",
"priceDetails": "per user",
"name": "TechCrunch",
"price": "",
"priceDetails": "",

"features": [
"5 users",
"Priority Support",
"10 GB of storage",
"Phone and Email support"
]
"features": [],
"icon": "/assets/images/TechCrunch.png"
},
{
"name": "Enterprise",
"price": "$29",
"priceDetails": "per user",
"features": [
"50 users",
"24/7 Support",
"100 GB of storage",
"Phone and Email support"
]
"name": "",
"price": "",
"priceDetails": "",
"features": []
}
]
},
Expand Down
6 changes: 4 additions & 2 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import MainHero from '../components/MainHero';
import MainHeroImage from '../components/MainHeroImage';
import Product from '../components/Product';
import Head from "next/head";
import Pricing from '../components/Pricing';

const App = () => {
return (
Expand Down Expand Up @@ -48,15 +49,16 @@ const App = () => {
<LazyShow>
<>
<Features />
{/* <Canvas />

<Canvas />
</>
</LazyShow>
<LazyShow>
<Pricing />
</LazyShow>
<LazyShow>
<>
<Canvas /> */}
<Canvas />
<About />
</>
</LazyShow>
Expand Down

0 comments on commit 30cfa43

Please sign in to comment.