Skip to content

Commit

Permalink
delete unused pages
Browse files Browse the repository at this point in the history
  • Loading branch information
robchendev committed Jan 26, 2023
1 parent 28780fe commit abc57ff
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 195 deletions.
2 changes: 1 addition & 1 deletion pages/about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { NextPage } from "next";
import Wrapper from "../components/Wrapper";

export const About: NextPage = () => {
return <Wrapper>stub</Wrapper>;
return <Wrapper>About TODO</Wrapper>;
};

export default About;
50 changes: 0 additions & 50 deletions pages/blog.tsx

This file was deleted.

54 changes: 0 additions & 54 deletions pages/dashboard/temp.tsx

This file was deleted.

Empty file removed pages/dashboard/test.css
Empty file.
2 changes: 1 addition & 1 deletion pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { NextPage } from "next";
import Wrapper from "../components/Wrapper";

export const Index: NextPage = () => {
return <Wrapper>stub</Wrapper>;
return <Wrapper>Homepage TODO</Wrapper>;
};

export default Index;
12 changes: 0 additions & 12 deletions pages/newprojects.tsx

This file was deleted.

47 changes: 10 additions & 37 deletions pages/projects.tsx
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;
40 changes: 0 additions & 40 deletions pages/sandbox.tsx

This file was deleted.

0 comments on commit abc57ff

Please sign in to comment.