mirror of
https://github.com/tjsga/tj-sga-website-react.git
synced 2025-05-20 17:19:50 -04:00
24 lines
389 B
TypeScript
24 lines
389 B
TypeScript
import React from 'react';
|
|
import Hero from '../components/Hero';
|
|
import NewsAndMission from '../components/NewsAndMission';
|
|
import SegmentGroup from '../components/SegmentGroup';
|
|
|
|
export default function IndexPage() {
|
|
return (
|
|
<>
|
|
{/* Hero image */}
|
|
<Hero />
|
|
|
|
<hr />
|
|
|
|
{/* Info columns */}
|
|
<SegmentGroup />
|
|
|
|
<hr />
|
|
|
|
{/* Mission */}
|
|
<NewsAndMission />
|
|
</>
|
|
);
|
|
}
|