diff --git a/template/app/src/landing-page/components/Clients.tsx b/template/app/src/landing-page/components/Clients.tsx index 5c83fd3a..44115d3b 100644 --- a/template/app/src/landing-page/components/Clients.tsx +++ b/template/app/src/landing-page/components/Clients.tsx @@ -1,23 +1,64 @@ +import logo from '../../client/static/logo.webp'; import AstroLogo from "../logos/AstroLogo"; import OpenAILogo from "../logos/OpenAILogo"; import PrismaLogo from "../logos/PrismaLogo"; -import SalesforceLogo from "../logos/SalesforceLogo"; export default function Clients() { return (
-

- Built with / Used by: +

+ Built and Ships with

- { - [, , , ].map((logo, index) => ( -
- {logo} -
- )) - } + + React + + NodeJS + + Wasp + +
+ +
+ + Tailwind CSS + + Stripe + +
+ +
+ +
+ +
+
) diff --git a/template/app/src/landing-page/components/FAQ.tsx b/template/app/src/landing-page/components/FAQ.tsx index 1bac30e8..2d51315b 100644 --- a/template/app/src/landing-page/components/FAQ.tsx +++ b/template/app/src/landing-page/components/FAQ.tsx @@ -7,20 +7,20 @@ interface FAQ { export default function FAQ({ faqs }: { faqs: FAQ[] }) { return ( -
+

Frequently asked questions

-
+
{faqs.map((faq) => (
{faq.question}
-
-

{faq.answer}

+
+

{faq.answer}

{faq.href && ( - + Learn more โ†’ )} diff --git a/template/app/src/landing-page/components/Features.tsx b/template/app/src/landing-page/components/Features.tsx index a81b1319..bb070585 100644 --- a/template/app/src/landing-page/components/Features.tsx +++ b/template/app/src/landing-page/components/Features.tsx @@ -10,25 +10,27 @@ export default function Features({ features }: { features: Feature[] }) {

- The Best Features + 100% Open-Source

-

- Don't work harder. -
Work smarter. +

+ No vendor lock-in. +
Deploy anywhere.

{features.map((feature) => ( -
-
-
-
{feature.icon}
-
- {feature.name} -
-
{feature.description}
-
+ +
+
+
+
{feature.icon}
+
+ {feature.name} +
+
{feature.description}
+
+
))}
diff --git a/template/app/src/landing-page/components/Footer.tsx b/template/app/src/landing-page/components/Footer.tsx index ca7bb576..84ad3214 100644 --- a/template/app/src/landing-page/components/Footer.tsx +++ b/template/app/src/landing-page/components/Footer.tsx @@ -13,7 +13,7 @@ export default function Footer({ footerNavigation }: {