diff --git a/apps/abclaunch/src/pages/Home.tsx b/apps/abclaunch/src/pages/Home.tsx index decfde2..97361b2 100644 --- a/apps/abclaunch/src/pages/Home.tsx +++ b/apps/abclaunch/src/pages/Home.tsx @@ -1,11 +1,13 @@ import { Divider, HStack, Text, VStack, Image } from '@chakra-ui/react'; import { useNavigate } from 'react-router-dom'; import ChooseOption from '../components/ChooseOption'; +import NotOptimizedModal from 'commons-ui/src/components/MobileOptimizationWarningModal'; export default function Launchpad() { const navigate = useNavigate(); return ( + Welcome to ABC Launch Build a regenerative economy with an @@ -35,20 +37,20 @@ export default function Launchpad() { - navigate('/new-dao')} buttonText="Launch on a new DAO" /> - navigate('/existing-dao')} buttonText="Launch on an existing DAO" diff --git a/apps/abcswap/src/pages/Home.tsx b/apps/abcswap/src/pages/Home.tsx index a0562d5..97432f5 100644 --- a/apps/abcswap/src/pages/Home.tsx +++ b/apps/abcswap/src/pages/Home.tsx @@ -3,6 +3,7 @@ import { Button, Divider, HStack, Image, Stack, Text, VStack } from '@chakra-ui/ import { useState } from 'react'; import { useNavigate } from 'react-router-dom'; import { DaoNameInput, useIsRegisteredDaoWithApp } from 'dao-utils'; +import NotOptimizedModal from 'commons-ui/src/components/MobileOptimizationWarningModal'; export default function Home() { @@ -20,6 +21,7 @@ export default function Home() { return ( + Welcome to ABC Swap Find and swap ABC tokens. diff --git a/pkg/commons-ui/src/components/Layout.tsx b/pkg/commons-ui/src/components/Layout.tsx index 7f837f5..9f8b8f1 100644 --- a/pkg/commons-ui/src/components/Layout.tsx +++ b/pkg/commons-ui/src/components/Layout.tsx @@ -9,7 +9,7 @@ type LayoutProps = { export default function Layout({ children, variant }: LayoutProps) { return ( - +
{children}