diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 6e9147b..81f3728 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -30,13 +30,17 @@ const Home: NextPage = () => { backgroundPosition: `center`, }} className="h-96">

Welcome to the Resource Center for Auditory Training!

Looking for resource recommendations?

- start survey + + Start Survey + +
@@ -60,8 +64,9 @@ const Home: NextPage = () => {

Want to learn more?

- + About +
diff --git a/tailwind.config.cjs b/tailwind.config.cjs index a82e7e9..b41304d 100644 --- a/tailwind.config.cjs +++ b/tailwind.config.cjs @@ -2,7 +2,17 @@ const config = { content: ["./src/**/*.{js,ts,jsx,tsx}"], theme: { - extend: {}, + extend: { + keyframes: { + expand_in_out: { + '0%, 100%': { transform: 'scale(1)' }, + '50%': { transform: 'scale(1.1)' }, + }, + }, + animation: { + expand_in_out: 'expand_in_out 2s ease-in-out infinite', + } + }, }, plugins: [], };