diff --git a/src/components/react/noise-bg.tsx b/src/components/react/noise-bg.tsx new file mode 100644 index 0000000..2712853 --- /dev/null +++ b/src/components/react/noise-bg.tsx @@ -0,0 +1,19 @@ +export function NoiseBg() { + return ( +
+ ) +} diff --git a/src/components/react/test.tsx b/src/components/react/test.tsx deleted file mode 100644 index c8a449b..0000000 --- a/src/components/react/test.tsx +++ /dev/null @@ -1,5 +0,0 @@ -export function Test() { - return ( -
Test React and TailwindCSS
- ) -} diff --git a/src/layouts/base.astro b/src/layouts/base.astro index 5bf4475..6fd97fc 100644 --- a/src/layouts/base.astro +++ b/src/layouts/base.astro @@ -1,6 +1,7 @@ --- import "~/styles/globals.css" import { config } from "~/config" +import { NoiseBg } from "~/components/react/noise-bg" --- @@ -35,6 +36,7 @@ import { config } from "~/config"
+