diff --git a/components/HomePage/GetInvolved.tsx b/components/HomePage/GetInvolved.tsx index 1774bbf..12ef3f4 100644 --- a/components/HomePage/GetInvolved.tsx +++ b/components/HomePage/GetInvolved.tsx @@ -7,7 +7,7 @@ const hoverClass = export const GetInvolved = () => (
GET INVOLVED
diff --git a/components/HomePage/Hero.tsx b/components/HomePage/Hero.tsx index 10eb7b4..68431ef 100644 --- a/components/HomePage/Hero.tsx +++ b/components/HomePage/Hero.tsx @@ -3,7 +3,9 @@ import { SiteLink } from '../SiteLink'; export const Hero = () => (
-

Architecting Autonomy

+

+ Architecting Autonomy +

Creating open-source frameworks for co-owned AI diff --git a/components/HomePage/Investors.tsx b/components/HomePage/Investors.tsx index 5a61cfd..c4ce1f1 100644 --- a/components/HomePage/Investors.tsx +++ b/components/HomePage/Investors.tsx @@ -2,8 +2,10 @@ import Image from 'next/image'; import investors from 'data/investors.json'; export const Investors = () => ( -
-

Investors

+
+

+ Investors +

{investors.map((logo, index) => ( ( -
+
-

News

+

News

See all diff --git a/components/HomePage/MissionStatement.tsx b/components/HomePage/MissionStatement.tsx index a4f36f8..f878ce7 100644 --- a/components/HomePage/MissionStatement.tsx +++ b/components/HomePage/MissionStatement.tsx @@ -1,11 +1,11 @@ export const MissionStatement = () => ( -
+
-

+

Mission statement

-
+
To enable communities, organizations and countries to co-own AI systems, beginning with decentralized autonomous agents
diff --git a/components/HomePage/Products.tsx b/components/HomePage/Products.tsx index 320aa9d..3e1cc89 100644 --- a/components/HomePage/Products.tsx +++ b/components/HomePage/Products.tsx @@ -5,7 +5,7 @@ import products from 'data/products.json'; export const Products = () => (
PRODUCTS
diff --git a/components/HomePage/Research.tsx b/components/HomePage/Research.tsx index 41e26ad..71a802c 100644 --- a/components/HomePage/Research.tsx +++ b/components/HomePage/Research.tsx @@ -3,9 +3,9 @@ import Image from 'next/image'; import { SiteLink } from '../SiteLink'; export const Research = () => ( -
+
-

Research

+

Research

{research.map((paper) => (
( -
+
-

Team

+

+ Team +

{team.map((member, index) => { let finalClass = ''; diff --git a/pages/post/index.tsx b/pages/post/index.tsx index fb6aa8f..e987916 100644 --- a/pages/post/index.tsx +++ b/pages/post/index.tsx @@ -7,7 +7,7 @@ const NewsPage = () => (
-

News

+

News

diff --git a/styles/globals.css b/styles/globals.css index 80719f0..dd19475 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -13,6 +13,10 @@ html { scroll-behavior: smooth; } +.anchor { + scroll-margin-top: 100px; +} + :root { --background: #ffffff; --foreground: #171717; diff --git a/tailwind.config.ts b/tailwind.config.ts index 0332fc0..6284df9 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -22,6 +22,32 @@ export default { helvetica: ["'Helvetica Light'", 'sans-serif'], avenir: ["'Avenir LT'", 'sans-serif'], }, + animation: { + 'slide-in-right': 'slideInRight 1.5s ease-out', + 'slide-in-left': 'slideInLeft 1.5s ease-out', + }, + keyframes: { + slideInRight: { + '0%': { + transform: 'translateX(50%)', + opacity: '0', + }, + '100%': { + transform: 'translateX(0)', + opacity: '1', + }, + }, + slideInLeft: { + '0%': { + transform: 'translateX(-50%)', + opacity: '0', + }, + '100%': { + transform: 'translateX(0)', + opacity: '1', + }, + }, + }, }, }, plugins: [daisyui],