Redo homepage to @franknoirot 's new designs

Not finished but enough for a mvp
designs; https://www.figma.com/file/VUh53RdncjZ7NuFYj0RGB9/CadHub?node-id=1652%3A4224
This commit is contained in:
Kurt Hutten
2021-09-10 18:26:35 +10:00
parent 12ab456446
commit b8fa22eede
15 changed files with 42187 additions and 78 deletions

View File

@@ -1,20 +1,16 @@
import MainLayout from 'src/layouts/MainLayout'
import ProjectsCell from 'src/components/ProjectsCell'
import LandingSection from 'src/components/LandingSection'
import Seo from 'src/components/Seo/Seo'
import { Hero } from 'src/components/Hero/Hero'
const ProjectsPage = () => {
return (
<MainLayout>
<MainLayout shouldRemoveFooterInIde>
<Seo
title="Projects page"
description="Cadhub Projects page"
title="Home page"
description="Learn about Code CAD and the CadHub community"
lang="en-US"
/>
<LandingSection />
<div className="bg-ch-gray-800 py-20">
<ProjectsCell shouldFilterProjectsWithoutImage />
</div>
<Hero />
</MainLayout>
)
}

View File

@@ -0,0 +1,23 @@
import ProjectsCell from 'src/components/ProjectsCell'
import MainLayout from 'src/layouts/MainLayout'
import Seo from 'src/components/Seo/Seo'
const ProjectsPage = () => {
return (
<MainLayout shouldRemoveFooterInIde>
<Seo
title="Projects page"
description="Cadhub Projects page"
lang="en-US"
/>
<div className="bg-ch-gray-800 pb-64">
<h1 className="max-w-7xl mx-auto text-4xl px-4 py-4 pt-16 text-ch-gray-300 font-sans">
Projects
</h1>
<ProjectsCell shouldFilterProjectsWithoutImage projectLimit={80} />
</div>
</MainLayout>
)
}
export default ProjectsPage