mirror of https://github.com/explosion/spaCy.git
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
|