diff --git a/web/blog/2021-11-21-seed-round.md b/web/blog/2021-11-21-seed-round.md index 3293fcfa6..deed27e2b 100644 --- a/web/blog/2021-11-21-seed-round.md +++ b/web/blog/2021-11-21-seed-round.md @@ -8,31 +8,11 @@ tags: [startup, wasp] import Link from '@docusaurus/Link'; import useBaseUrl from '@docusaurus/useBaseUrl'; - -export const Divider = () => ( - -) - -export const Cta = () => ( -

- - We are in Alpha (try it out)! - - - - Join our community - - - - Work with us - -

-) +import InBlogCta from './components/InBlogCta'; *Wasp is a configuration language (DSL) for building full-stack web apps with less code and best practices that works alongside React and Node.js. We are on a mission to streamline web app development while empowering developers to continue using the power of code and their favourite tools.* - + After graduating from Y Combinator's Winter 2021 Batch, we are super excited to announce that Wasp raised $1.5m in our first funding round! The round is led by Lunar Ventures and joined by HV Capital. @@ -98,4 +78,4 @@ Our immediate focus is to bring Wasp to Beta and then 1.0 (see our high-level ro Thank you for reading - we can't wait to see what you will build! - + diff --git a/web/blog/components/InBlogCta.js b/web/blog/components/InBlogCta.js new file mode 100644 index 000000000..607492969 --- /dev/null +++ b/web/blog/components/InBlogCta.js @@ -0,0 +1,27 @@ +import React from 'react' + +import Link from '@docusaurus/Link'; +import useBaseUrl from '@docusaurus/useBaseUrl'; + +const Divider = () => ( + +) + +const InBlogCta = () => ( +

+ + We are in Alpha (try it out)! + + + + Join our community + + + + Work with us + +

+) + +export default InBlogCta diff --git a/web/src/css/custom.css b/web/src/css/custom.css index f0a21c0b8..8838b725e 100644 --- a/web/src/css/custom.css +++ b/web/src/css/custom.css @@ -49,13 +49,13 @@ /* NOTE(matija): this is used within a blog post (e.g. seed round * announcement). */ -.blog-header-cta--link { +.in-blog-cta--link { color: var(--ifm-color-primary); font-weight: bold; text-decoration: underline; } -.blog-header-cta--divider { +.in-blog-cta--divider { color: black; }