-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Example About Page, filled with 3 Lorems. Tests will be added soon, still on progress
- Loading branch information
1 parent
ce79021
commit 1c79ed5
Showing
2 changed files
with
35 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import { Meta } from '@/layouts/Meta'; | ||
import { Main } from '@/templates/Main'; | ||
|
||
const About = () => ( | ||
<Main | ||
meta={ | ||
<Meta | ||
title="about Juun" | ||
description="description about this page, explain packages & techs used." | ||
/> | ||
} | ||
> | ||
<p> | ||
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Reiciendis | ||
delectus dolore inventore repellendus suscipit maiores veritatis | ||
doloribus, architecto deleniti error ratione libero vero autem est | ||
temporibus fugiat sunt ut eos. | ||
</p> | ||
<p> | ||
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Hic dolores quos | ||
voluptatibus tenetur cumque, unde porro quaerat veritatis similique | ||
possimus cupiditate. Doloribus expedita iure qui delectus dolorem optio | ||
magni repellendus? | ||
</p> | ||
<p> | ||
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quidem dolor | ||
nostrum fuga et. Aliquid, vitae totam. Ad eligendi voluptatem debitis | ||
atque fuga! Molestiae, sequi eos natus ex necessitatibus corrupti ratione. | ||
</p> | ||
</Main> | ||
); | ||
|
||
export default About; |
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