diff --git a/components/page-wrapper.tsx b/components/page-wrapper.tsx index d3edc71f3..626e01471 100644 --- a/components/page-wrapper.tsx +++ b/components/page-wrapper.tsx @@ -9,7 +9,7 @@ export function PageWrapper(props: PageWrapperProps) { const { children } = props; return ( - + { children } ); diff --git a/components/updates-banner.tsx b/components/updates-banner.tsx index 0515fd73b..ca6309140 100644 --- a/components/updates-banner.tsx +++ b/components/updates-banner.tsx @@ -1,40 +1,77 @@ -import { Box, Button, Container, Flex, Heading, Link, Text } from '@chakra-ui/react'; +import { + Box, + Button, + Container, + Flex, + Heading, + Link, + Text, +} from '@chakra-ui/react'; import siteConfig from '../content/site.json'; export function UpdatesBanner() { return ( - - - Stay - Informed - Subscribe yourself to get - updates, new - guides, videos and roadmaps in your inbox. + + + + Stay Informed + + + Subscribe yourself to get updates, new guides, videos and roadmaps in + your inbox. + - - Free subscription for updates + + Free subscription for updates + - - Support the project by paying as little as 5$ - per month + + + Support the project by paying as little as{' '} + + 5$ per month + + diff --git a/public/bg.jpg b/public/bg.jpg new file mode 100644 index 000000000..9c9345c21 Binary files /dev/null and b/public/bg.jpg differ diff --git a/styles/theme.ts b/styles/theme.ts index 4e31b6065..97f4b9df2 100644 --- a/styles/theme.ts +++ b/styles/theme.ts @@ -3,9 +3,9 @@ import { extendTheme } from '@chakra-ui/react'; export const roadmapTheme = extendTheme({ colors: { brand: { - bg: '#222222', - hero: '#161616', - footer: '#1c1c1c' + bg: '#06020d', + hero: '#06020d', + footer: '#0d041e' } } });