issues-103 Add landing page copy

Trying to "sell" the website and the concept of code-cad
This commit is contained in:
Kurt Hutten
2020-11-29 11:05:44 +11:00
parent e1eec0f738
commit 5114716ee8
10 changed files with 402 additions and 36 deletions

View File

@@ -0,0 +1,11 @@
import { render } from '@redwoodjs/testing'
import LandingSection from './LandingSection'
describe('LandingSection', () => {
it('renders successfully', () => {
expect(() => {
render(<LandingSection />)
}).not.toThrow()
})
})