diff --git a/package.json b/package.json index 52b3e31..0bbcf6a 100644 --- a/package.json +++ b/package.json @@ -29,6 +29,7 @@ "react": "^18.3.1", "react-countup": "^6.5.3", "react-dom": "^18.3.1", + "react-type-animation": "^3.2.0", "tailwind-merge": "^2.6.0", "tailwindcss": "^4.1.7", "three": "^0.179.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 6d5c2a1..0b3dc0f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -65,6 +65,9 @@ importers: react-dom: specifier: ^18.3.1 version: 18.3.1(react@18.3.1) + react-type-animation: + specifier: ^3.2.0 + version: 3.2.0(prop-types@15.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) tailwind-merge: specifier: ^2.6.0 version: 2.6.0 @@ -2270,6 +2273,13 @@ packages: peerDependencies: react: ^18.0.0 + react-type-animation@3.2.0: + resolution: {integrity: sha512-WXTe0i3rRNKjmggPvT5ntye1QBt0ATGbijeW6V3cQe2W0jaMABXXlPPEdtofnS9tM7wSRHchEvI9SUw+0kUohw==} + peerDependencies: + prop-types: ^15.5.4 + react: '>= 15.0.0' + react-dom: '>= 15.0.0' + react-use-measure@2.1.7: resolution: {integrity: sha512-KrvcAo13I/60HpwGO5jpW7E9DfusKyLPLvuHlUyP5zqnmAPhNc6qTRjUQrdTADl0lpPpDVU2/Gg51UlOGHXbdg==} peerDependencies: @@ -4945,6 +4955,12 @@ snapshots: react: 18.3.1 scheduler: 0.21.0 + react-type-animation@3.2.0(prop-types@15.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + prop-types: 15.8.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-use-measure@2.1.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: react: 18.3.1 diff --git a/src/app/(main)/about/page.tsx b/src/app/(main)/about/page.tsx index b7ef1bf..03ead54 100644 --- a/src/app/(main)/about/page.tsx +++ b/src/app/(main)/about/page.tsx @@ -1,7 +1,10 @@ +import { AboutHero } from "@/components/AboutHero" + + export default function About() { return (
+ At ThreeFold, we are empowering + individuals and organizations to shape an open, resilient, and sustainable internet. +
+Welcome to ThreeFold: the first all-in-one, white-label engagement platform to mobilize communities, engage supporters, scale impact, and fundraise—at a fraction of the cost.
diff --git a/src/components/ui/Text.tsx b/src/components/ui/Text.tsx new file mode 100644 index 0000000..15ba618 --- /dev/null +++ b/src/components/ui/Text.tsx @@ -0,0 +1,9 @@ +import { cn } from '@/lib/utils' +import React from 'react' + +const h1 = React.forwardRef