mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-28 14:04:43 -04:00
parent
557386f78f
commit
e2155e735d
65 changed files with 834 additions and 467 deletions
15
src/components/landing/landing-layout.tsx
Normal file
15
src/components/landing/landing-layout.tsx
Normal file
|
@ -0,0 +1,15 @@
|
|||
import React from 'react'
|
||||
import { Container } from 'react-bootstrap'
|
||||
import { HeaderBar } from './layout/navigation/header-bar/header-bar'
|
||||
import { Footer } from './layout/footer/footer'
|
||||
import './layout/style/index.scss'
|
||||
|
||||
export const LandingLayout: React.FC = ({ children }) => {
|
||||
return (
|
||||
<Container>
|
||||
<HeaderBar/>
|
||||
{children}
|
||||
<Footer/>
|
||||
</Container>
|
||||
)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue