-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
28780fe
commit abc57ff
Showing
8 changed files
with
12 additions
and
195 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,15 @@ | ||
import { Box, Container, Flex, Heading, Text } from "@chakra-ui/layout"; | ||
import React from "react"; | ||
import Wrapper from "../components/Wrapper"; | ||
|
||
import { Contact } from "../components/contact"; | ||
import { BaseLayout } from "../layouts/base"; | ||
import { Metadata } from "../components/metadata"; | ||
|
||
const ProjectsPage = () => { | ||
const projects = []; | ||
const Projects = () => { | ||
return ( | ||
<BaseLayout> | ||
<Metadata title="Projects" /> | ||
<Box py="10" bgGradient="linear(to-l, #9bd4d2, #92b8ff)"> | ||
<Container maxW="container.xl"> | ||
<Flex align="center" color="gray.700"> | ||
<Heading as="h1" size="4xl" fontFamily="Consolas"> | ||
Projects | ||
</Heading> | ||
</Flex> | ||
<Text> | ||
Projects are the heart and soul of VikeLabs. Here you'll find the various projects our | ||
members are currently working on and previous projects we've taken on. | ||
</Text> | ||
</Container> | ||
</Box> | ||
<Box py="10"> | ||
<Container maxW="container.xl"> | ||
{projects.map((p) => ( | ||
<Box as="section" my="8" key={p}> | ||
{/* <Link as={GLink} to={`/projects${p.fields.slug}`} fontSize="4xl"> | ||
{p.frontmatter?.title || ""} | ||
</Link> */} | ||
{/* <Text>{p.frontmatter?.description || ""}</Text> */} | ||
</Box> | ||
))} | ||
<Contact /> | ||
</Container> | ||
</Box> | ||
</BaseLayout> | ||
<Wrapper> | ||
<div> | ||
Projects are the heart and soul of VikeLabs. Here you'll find the various projects our | ||
members are currently working on and previous projects we've taken on. | ||
</div> | ||
</Wrapper> | ||
); | ||
}; | ||
|
||
export default ProjectsPage; | ||
export default Projects; |
This file was deleted.
Oops, something went wrong.