diff --git a/beta/src/components/Layout/HomeContent.js b/beta/src/components/Layout/HomeContent.js index 83e68db06..44327377a 100644 --- a/beta/src/components/Layout/HomeContent.js +++ b/beta/src/components/Layout/HomeContent.js @@ -363,11 +363,11 @@ export function HomeContent() { -
-
-
-
-
+
+
+
+
+

Join a community of millions

@@ -376,8 +376,22 @@ export function HomeContent() { React site every month and the React Developer Tools extension has over three million weekly active users. React is something that people and teams can agree on. -
-
+

+
+
+
+
+
+ +
+
+ +
+
+
+
+
+

If you're debugging an obscure problem, chances are, somebody has already run into it before and shared a solution. React also has a vibrant ecosystem. Whether you @@ -386,37 +400,10 @@ export function HomeContent() { engine, chances are you'll find what you need.

-
- {/*
-
-
-
-

- Join a community of millions -

-

- You're not alone. Two million developers visit the React - site every month and the React Developer Tools extension has - over three million weekly active users. React is something - that people and teams can agree on. -
-
- If you're debugging an obscure problem, chances are, - somebody has already run into it before and shared a solution. - React also has a vibrant ecosystem. Whether you need a table, - a chart, a fully accessible datepicker, a production-grade - data fetching strategy, or a 3D rendering engine, chances are - you'll find what you need. -

-
-
-
-
*/} -
@@ -439,6 +426,39 @@ export function HomeContent() { ); } +function CommunityImages() { + return ( + <> +
+ +
+
+ +
+ +
+ +
+ +
+ +
+ + ); +} + function Example1() { return (
diff --git a/beta/tailwind.config.js b/beta/tailwind.config.js index af200e8f4..7d3ed92bb 100644 --- a/beta/tailwind.config.js +++ b/beta/tailwind.config.js @@ -73,12 +73,24 @@ module.exports = { xs: '11px', code: 'calc(1em - 20%)', }, + animation: { + marquee: 'marquee 40s linear infinite', + marquee2: 'marquee2 40s linear infinite', + }, keyframes: { shimmer: { '100%': { transform: 'translateX(100%)', }, }, + marquee: { + '0%': {transform: 'translateX(0%)'}, + '100%': {transform: 'translateX(-100%)'}, + }, + marquee2: { + '0%': {transform: 'translateX(100%)'}, + '100%': {transform: 'translateX(0%)'}, + }, }, colors, gridTemplateColumns: {