-
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.
Add rest of the example blog, new path
- Loading branch information
Adam Plesnik
committed
Apr 5, 2024
1 parent
33e079c
commit f551c7d
Showing
2 changed files
with
19 additions
and
1 deletion.
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 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,7 +1,20 @@ | ||
import { NavLink } from 'react-router-dom' | ||
import Heading from '../components/Heading' | ||
import Tile from '../components/Tile' | ||
import Page from '../layouts/Page' | ||
|
||
const Blog = () => { | ||
return <Page>hello</Page> | ||
return ( | ||
<Page> | ||
<Heading size={1}>Blog</Heading> | ||
<Tile | ||
title="Text Appear Animation in CSS" | ||
subTitle="Tackle impressive text appear animation just by CSS and teeny-tiny piece of JS code." | ||
> | ||
<NavLink to="/blog/test">test</NavLink> | ||
</Tile> | ||
</Page> | ||
) | ||
} | ||
|
||
export default Blog |