Added the ministry of truth

This commit is contained in:
Gnarwhal 2024-07-05 16:06:02 +00:00
parent 071079b061
commit 92cb7977ef
Signed by: Gnarwhal
GPG key ID: 0989A73D8C421174
11 changed files with 186 additions and 80 deletions

View file

@ -0,0 +1,16 @@
import {
beeg_container,
beeg_dummy,
beeg_foreground,
beeg_background,
} from './BeegText.css'
export default function BeegText({ children }: { children: React.ReactNode }) {
return (
<div className={beeg_container}>
<p className={beeg_background}>{children}</p>
<p className={beeg_foreground}>{children}</p>
<p className={beeg_dummy} >{children}</p>
</div>
)
}