diff --git a/web/components/home/FeaturesSection.tsx b/web/components/home/FeaturesSection.tsx index fd5cf7c..8caed05 100644 --- a/web/components/home/FeaturesSection.tsx +++ b/web/components/home/FeaturesSection.tsx @@ -17,7 +17,7 @@ const FeaturesSection = () => { return ( - + Features @@ -30,10 +30,10 @@ const FeaturesSection = () => { - + {featuresContent.map((feature, i) => ( - - + + diff --git a/web/components/home/HowItWorksSection.tsx b/web/components/home/HowItWorksSection.tsx index 42b02f5..ca8884a 100644 --- a/web/components/home/HowItWorksSection.tsx +++ b/web/components/home/HowItWorksSection.tsx @@ -19,7 +19,7 @@ export default function HowItWorksSection() { - + How It Works diff --git a/web/components/home/featuresContent.ts b/web/components/home/featuresContent.ts index a68c734..9418715 100644 --- a/web/components/home/featuresContent.ts +++ b/web/components/home/featuresContent.ts @@ -1,7 +1,7 @@ export const featuresContent = [ { title: 'Send SMS', - description: 'Send SMS to any number from your dashboard or via API.', + description: 'Send SMS to any number from your dashboard or via REST API.', }, { title: 'Bulk SMS', diff --git a/web/pages/index.tsx b/web/pages/index.tsx index 9417636..80abf54 100644 --- a/web/pages/index.tsx +++ b/web/pages/index.tsx @@ -1,5 +1,6 @@ -import { Container } from '@chakra-ui/react' +import { Box, Container } from '@chakra-ui/react' import { useGoogleOneTapLogin } from '@react-oauth/google' +import Image from 'next/image' import Router from 'next/router' import { useEffect } from 'react' import { useDispatch, useSelector } from 'react-redux' @@ -8,6 +9,12 @@ import HowItWorksSection from '../components/home/HowItWorksSection' import IntroSection from '../components/home/IntroSection' import { loginWithGoogle, selectAuth } from '../store/authReducer' +const Wave = ({ rotate }: { rotate?: boolean }) => ( + + {'wave'} + +) + export default function HomePage() { const { accessToken, user } = useSelector(selectAuth) useEffect(() => { @@ -33,8 +40,11 @@ export default function HomePage() { return ( + + + ) } diff --git a/web/public/images/wave.svg b/web/public/images/wave.svg new file mode 100644 index 0000000..fb9ede7 --- /dev/null +++ b/web/public/images/wave.svg @@ -0,0 +1 @@ + \ No newline at end of file