Files
test/src/pages/HomePage/HomePage.jsx
T

49 lines
1.5 KiB
React
Raw Normal View History

2024-10-12 02:08:44 +03:00
import * as React from 'react';
2024-10-22 22:44:24 +03:00
import {Link} from 'gatsby';
import Layout from "../../components/Layout/Layout";
2024-10-12 02:08:44 +03:00
import '../../styles/styles.scss';
function Home() {
2024-10-22 22:44:24 +03:00
return (
<Layout>
<h1>Insights</h1>
<p className="text-container p-b-56">
Upcoming fashion insights, enabling you to make informed procurement and
manufacturing decisions that align with consumer preferences and market
demands
</p>
<div className="center p-b-56 flex flex--center flex--gap-32">
<Link
to="/insights/"
className="button button__primary"
style={{pointerEvents: 'none'}}
>
Mens Fashion
</Link>
<Link
to="/insights/"
className="button button__primary"
style={{pointerEvents: 'none'}}
>
Womens Fashion
</Link>
<Link
to="/insights/"
className="button button__primary"
style={{pointerEvents: 'none'}}
>
Kids Fashion
</Link>
</div>
<div className="box center p-b-80">
<Link to="/insights/" className="button button__secondary m-t-80">
Generate Insights
</Link>
</div>
</Layout>
);
2024-10-12 02:08:44 +03:00
}
export default Home;