diff --git a/frontend/src/pages/About.tsx b/frontend/src/pages/About.tsx new file mode 100644 index 0000000..f1e9d25 --- /dev/null +++ b/frontend/src/pages/About.tsx @@ -0,0 +1,98 @@ +import "@fontsource/kavivanar/index.css"; +import "@fontsource/space-mono/index.css"; +import "@fontsource/redacted-script/index.css"; +import "@fontsource/architects-daughter/index.css"; + +import { + ArrowBendDownLeftIcon, + ArrowBendDownRightIcon, + FlowerLotusIcon, +} from "@phosphor-icons/react"; +import { motion, useScroll, useSpring, useTransform } from "motion/react"; +import Logo from "../components/Logo.tsx"; + +export default function About() { + const { scrollYProgress } = useScroll(); + const smoothProgress = useSpring(scrollYProgress, { + stiffness: 30, + damping: 50, + restDelta: 0.001, + }); + + return ( +
+
+ +
+
+
+ +
+
+ பின் + + + குறிப்பு +
+
+
+
+
+
+
pin·ku·rip·pu
+
+ +
+
+
/noun/
+
+
    +
      + postscript; a note written after the letter is signed. +
      +
      + "the most honest thing was always in the{" "} + பி. கு." +
      +
    +
      the thing you almost didn't say.
    +
+
+
+
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ); +}