-
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
Showing
7 changed files
with
75 additions
and
46 deletions.
There are no files selected for viewing
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,21 @@ | ||
import React from 'react'; | ||
import ImageBanner from '@/components/ImageBanner'; | ||
|
||
export default function Posts() { | ||
return ( | ||
<> | ||
<h1 className="text-text font-black md:text-[50px] sm:text-[42px] text-[30px]"> | ||
Posts | ||
</h1> | ||
The magic you're looking for is in the work you're avoiding. | ||
<ImageBanner /> | ||
<div className="mt-4 max-w-6xl min-w-0 px-6 py-4 flex-auto flex flex-col bg-neutral rounded-2xl"> | ||
<h1 className="w-full text-text font-black md:text-[50px] sm:text-[42px] text-[30px]"> | ||
Posts | ||
</h1> | ||
The magic you're looking for is in the work you're | ||
avoiding.The magic you're looking for is in the work you're | ||
avoiding.The magic you're looking for is in the work you're | ||
avoiding.The magic you're looking for is in the work you're | ||
avoiding.The magic you're looking for is in the work you're | ||
avoiding. | ||
</div> | ||
</> | ||
); | ||
} |
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,33 @@ | ||
'use client'; | ||
|
||
import React from 'react'; | ||
import '../styles/imagebanner.css'; | ||
import {InfinityIcon} from './Icons'; | ||
|
||
const ImageBanner = () => { | ||
return ( | ||
<div className="mx-auto canvas"> | ||
<InfinityIcon className="!w-[460px] !h-[460px]" /> | ||
<svg className="h-0"> | ||
<filter id="wave"> | ||
<feTurbulence | ||
x="0" | ||
y="0" | ||
baseFrequency="0.009" | ||
numOctaves="5" | ||
seed="2"> | ||
<animate | ||
attributeName="baseFrequency" | ||
dur="60s" | ||
values="0.02;0.005;0.02" | ||
repeatCount="indefinite" | ||
/> | ||
</feTurbulence> | ||
<feDisplacementMap in="SourceGraphic" scale="20" /> | ||
</filter> | ||
</svg> | ||
</div> | ||
); | ||
}; | ||
|
||
export default ImageBanner; |
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