mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-28 14:04:43 -04:00
added branding option (#301)
added branding option via '@ <logo>' or '@ <name>' after the CodiMD logo and text. This was a user can personalize their CodiMD instance Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de> Co-authored-by: Erik Michelson <github@erik.michelson.eu> Co-authored-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de>
This commit is contained in:
parent
50b04c8403
commit
b23a73ac51
11 changed files with 79 additions and 4 deletions
|
@ -1,5 +1,6 @@
|
|||
import React from 'react'
|
||||
import { Container } from 'react-bootstrap'
|
||||
import { DocumentTitle } from '../common/document-title/document-title'
|
||||
import { Footer } from './layout/footer/footer'
|
||||
import { InfoBanner } from './layout/info-banner'
|
||||
import { HeaderBar } from './layout/navigation/header-bar/header-bar'
|
||||
|
@ -7,6 +8,7 @@ import { HeaderBar } from './layout/navigation/header-bar/header-bar'
|
|||
export const LandingLayout: React.FC = ({ children }) => {
|
||||
return (
|
||||
<Container className="text-white d-flex flex-column mvh-100">
|
||||
<DocumentTitle/>
|
||||
<InfoBanner/>
|
||||
<HeaderBar/>
|
||||
<div className={'d-flex flex-column justify-content-between flex-fill text-center'}>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue