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:
@@ -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>
|
||||
)
|
||||
}
|
||||
|
||||
23
app/web/src/pages/ProjectsPage/ProjectsPage.tsx
Normal file
23
app/web/src/pages/ProjectsPage/ProjectsPage.tsx
Normal 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
|
||||
Reference in New Issue
Block a user