Skip to content

Commit

Permalink
feat: pages added
Browse files Browse the repository at this point in the history
  • Loading branch information
arjunreddy-001 committed Jun 16, 2021
1 parent 3eef778 commit 43d904c
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/pages/404.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const NotFoundPage: React.FC = () => {
return (
<div>
<h1>404 : Not Found Page</h1>
</div>
);
};

export default NotFoundPage;
9 changes: 9 additions & 0 deletions src/pages/AboutPage.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const AboutPage: React.FC = () => {
return (
<div>
<h1>About Page</h1>
</div>
);
};

export default AboutPage;
9 changes: 9 additions & 0 deletions src/pages/ContactPage.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const ContactPage: React.FC = () => {
return (
<div>
<h1>Contact Page</h1>
</div>
);
};

export default ContactPage;
9 changes: 9 additions & 0 deletions src/pages/HomePage.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const HomePage: React.FC = () => {
return (
<div>
<h1>Home Page</h1>
</div>
);
};

export default HomePage;
9 changes: 9 additions & 0 deletions src/pages/ProjectsPage.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const ProjectsPage: React.FC = () => {
return (
<div>
<h1>Projects Page</h1>
</div>
);
};

export default ProjectsPage;

0 comments on commit 43d904c

Please sign in to comment.