diff --git a/components/molecules/TargetBubble/index.js b/components/molecules/TargetBubble/index.js index db9938a..90b9549 100644 --- a/components/molecules/TargetBubble/index.js +++ b/components/molecules/TargetBubble/index.js @@ -3,8 +3,8 @@ import { Box, Flex, Text } from '@chakra-ui/layout'; export default function TargetBubble({ target, description, icon }) { return ( - - + + - + {' '} {target}{' '} diff --git a/components/organisms/HomepageHero/index.js b/components/organisms/HomepageHero/index.js index c38dca7..c876d80 100644 --- a/components/organisms/HomepageHero/index.js +++ b/components/organisms/HomepageHero/index.js @@ -10,17 +10,17 @@ export default function HomepageHero() { background="linear-gradient(111.52deg, rgba(255, 189, 128, 0.182) 4.65%, rgba(255, 128, 136, 0.4628) 97.16%)" borderRadius="0px 72px 72px 0px" boxShadow="xl" - h={600} - width={['70vw']} + h={[380, 600]} + width={["95vw", "85vw", "70vw"]} position="absolute" left={0} zIndex={-1} /> - + - - + + Discover what people
search on the web.
@@ -35,7 +35,7 @@ export default function HomepageHero() {
- + + + - + + + - + {' '} Omnixent is open-source{' '} @@ -27,6 +29,7 @@ export default function HomepageOSS() { + <> + + + : } + aria-label={'Open Menu'} + display={{ md: !isOpen ? 'none' : 'inherit' }} + onClick={isOpen ? onClose : onOpen} + /> + + {navbarLinks.map((link) => ( + + + {link.label} + + + ))} + + - + + + {navbarLinks.map((link) => ( + + + {link.label} + + + ))} + + + ); } diff --git a/pages/_app.js b/pages/_app.js index 7612a40..24b1ba9 100644 --- a/pages/_app.js +++ b/pages/_app.js @@ -1,4 +1,5 @@ import { ChakraProvider } from '@chakra-ui/react'; +import Head from 'next/head'; import { NextSeo } from 'next-seo'; import Navbar from '../components/organisms/Navbar'; import Footer from '../components/organisms/Footer'; @@ -31,6 +32,9 @@ const CommonSEO = () => ( function MyApp({ Component, pageProps }) { return ( + + +