mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-15 14:17:58 +03:00
18 lines
413 B
TypeScript
18 lines
413 B
TypeScript
|
import recordSections from '../../meta/recordSections'
|
||
|
import Layout from '../../src/templates'
|
||
|
|
||
|
const Universe = () => {
|
||
|
return (
|
||
|
<Layout
|
||
|
slug={'/universe'}
|
||
|
section="universe"
|
||
|
sectionTitle={recordSections.universe.title}
|
||
|
theme={recordSections.universe.theme}
|
||
|
isIndex
|
||
|
title="Overview"
|
||
|
/>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default Universe
|