File size: 460 Bytes
f46b416
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import React from 'react'
import { FeatureCard } from '../../components/FeatureCard'
import { Introduction } from '../../components/Introduction'
import './index.css'


export function Home() {
    return (
        <div className='home-container'>
            <div style={{ width: '45%' }}>
                <Introduction />
            </div>
            <div style={{ width: '45%'}}>
                <FeatureCard />
            </div>
        </div>
    )
}