Actions
Build Action / Run-Build (push) Successful in 3m7s

This commit is contained in:
Dmytro Tkachenko
2024-10-22 22:44:24 +03:00
parent d510189905
commit 9a138e53a9
39 changed files with 1050 additions and 19941 deletions
+40 -25
View File
@@ -1,33 +1,48 @@
import * as React from 'react';
import { Link } from 'gatsby';
import {Link} from 'gatsby';
import Layout from "../../components/Layout/Layout";
import '../../styles/styles.scss';
function Home() {
return (
<main>
<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">
<Link
to="/insights/"
className="button button__primary"
style={{ pointerEvents: 'none' }}
>
Womens Fashion
</Link>
</div>
<div className="box center p-b-80">
<Link to="/insights/" className="button button__secondary m-t-80">
Generate Insights
</Link>
</div>
</main>
);
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>
);
}
export default Home;