From 72f02e80222317f07d7cd8a292e54a125dfef661 Mon Sep 17 00:00:00 2001 From: madawei2699 Date: Fri, 7 Apr 2023 08:42:07 +0800 Subject: [PATCH] feat: landing page, u --- web/landing/www/src/App.css | 2 +- web/landing/www/src/App.js | 2 + web/landing/www/src/components/FAQ.js | 3 +- web/landing/www/src/components/Features.js | 2 +- web/landing/www/src/components/Header.js | 16 +- web/landing/www/src/components/Hero.js | 10 +- web/landing/www/src/components/Highlight.js | 167 ++++++++++++++++++++ web/landing/www/src/components/Pricing.js | 8 +- 8 files changed, 199 insertions(+), 11 deletions(-) create mode 100644 web/landing/www/src/components/Highlight.js diff --git a/web/landing/www/src/App.css b/web/landing/www/src/App.css index 5d261d81..446d090e 100644 --- a/web/landing/www/src/App.css +++ b/web/landing/www/src/App.css @@ -41,7 +41,7 @@ } .benefits li { - padding: 10px 0; + padding: 4px 0; } .cta { diff --git a/web/landing/www/src/App.js b/web/landing/www/src/App.js index ffc8c57f..681448e8 100644 --- a/web/landing/www/src/App.js +++ b/web/landing/www/src/App.js @@ -8,6 +8,7 @@ import Features from "./components/Features"; import Pricing from "./components/Pricing"; import Footer from "./components/Footer"; import FAQ from "./components/FAQ"; +import Highlight from "./components/Highlight"; function App() { return ( @@ -33,6 +34,7 @@ function App() {
+