From f131b2f5712fa6e24839d2a19fe22970d6538a82 Mon Sep 17 00:00:00 2001 From: Serkan Reis Date: Wed, 28 Jun 2023 21:30:55 +0300 Subject: [PATCH] Update landing --- pages/home.tsx | 43 +++++++++++++++++++++++++++++++++++++++++++ pages/index.tsx | 44 +------------------------------------------- 2 files changed, 44 insertions(+), 43 deletions(-) create mode 100644 pages/home.tsx diff --git a/pages/home.tsx b/pages/home.tsx new file mode 100644 index 0000000..45efa8e --- /dev/null +++ b/pages/home.tsx @@ -0,0 +1,43 @@ +import { Conditional } from 'components/Conditional' +import { HomeCard } from 'components/HomeCard' +import type { NextPage } from 'next' +import { BADGE_HUB_ADDRESS } from 'utils/constants' +import { withMetadata } from 'utils/layout' + +const HomePage: NextPage = () => { + return ( +
+
+ Brand Text +
+

Welcome!

+

+ Looking for a fast and efficient way to build an NFT collection? Stargaze Studio is the solution. +
+
+ Stargaze Studio is built to provide useful smart contract interfaces that help you build and deploy your own NFT + collections in no time. +

+ +
+ +
+ +
+ + Create a collection, view a list of your collections or execute collection actions and queries. + + + + Create badges, view a list of them or execute badge related actions and queries. + + + + Execute actions and queries for a variety of contracts. + +
+
+ ) +} + +export default withMetadata(HomePage, { center: false }) diff --git a/pages/index.tsx b/pages/index.tsx index 45efa8e..f21be2c 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -1,43 +1 @@ -import { Conditional } from 'components/Conditional' -import { HomeCard } from 'components/HomeCard' -import type { NextPage } from 'next' -import { BADGE_HUB_ADDRESS } from 'utils/constants' -import { withMetadata } from 'utils/layout' - -const HomePage: NextPage = () => { - return ( -
-
- Brand Text -
-

Welcome!

-

- Looking for a fast and efficient way to build an NFT collection? Stargaze Studio is the solution. -
-
- Stargaze Studio is built to provide useful smart contract interfaces that help you build and deploy your own NFT - collections in no time. -

- -
- -
- -
- - Create a collection, view a list of your collections or execute collection actions and queries. - - - - Create badges, view a list of them or execute badge related actions and queries. - - - - Execute actions and queries for a variety of contracts. - -
-
- ) -} - -export default withMetadata(HomePage, { center: false }) +export { default } from './collections/create'