-
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.
- Loading branch information
1 parent
0b0cb04
commit e247a54
Showing
13 changed files
with
144 additions
and
34 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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
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,56 @@ | ||
import React from 'react'; | ||
import { TypographyH1, TypographyH3 } from '@/components/Typography'; | ||
import BlogCard from '@/components/BlogCard'; | ||
import Tags from '@/components/Tags'; | ||
import SearchIcon from '@/images/search-icon.svg'; | ||
import { Metadata } from 'next'; | ||
|
||
export const metadata: Metadata = { | ||
title: 'Faraday - Tags', | ||
}; | ||
|
||
function TagPage() { | ||
return ( | ||
<> | ||
<main className='container my-14'> | ||
<TypographyH1> | ||
The Faraday <span className='text-brandColor'>Blog</span> | ||
</TypographyH1> | ||
|
||
<section className='grid md:grid-cols-12 gap-16 mt-20'> | ||
<div className='md:col-span-8 @container '> | ||
<TypographyH3>Tech</TypographyH3> | ||
|
||
<div className='@lg:grid-cols-2 grid md:grid-cols-2 gap-3 mt-6'> | ||
<BlogCard /> | ||
<BlogCard /> | ||
<BlogCard /> | ||
<BlogCard /> | ||
<BlogCard /> | ||
<BlogCard /> | ||
</div> | ||
</div> | ||
|
||
<div className='md:col-span-4 hidden md:block'> | ||
<div className='flex bg-white rounded-md items-center mb-6'> | ||
<input | ||
type='text' | ||
name='' | ||
id='' | ||
className='p-3 w-full outline-none rounded-md' | ||
placeholder='Search tags' | ||
/> | ||
<button className='pr-3'> | ||
<SearchIcon width={24} /> | ||
</button> | ||
</div> | ||
|
||
<Tags horizontal /> | ||
</div> | ||
</section> | ||
</main> | ||
</> | ||
); | ||
} | ||
|
||
export default TagPage; |
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
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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -28,5 +28,5 @@ module.exports = { | |
}, | ||
}, | ||
}, | ||
plugins: [], | ||
plugins: [require('@tailwindcss/container-queries')], | ||
}; |