Skip to content

Commit

Permalink
Merge pull request #1 from edenartlab/frontend
Browse files Browse the repository at this point in the history
landing page
  • Loading branch information
jmilldotdev authored Dec 16, 2023
2 parents 51ff2d0 + 42a290f commit cdacb1c
Show file tree
Hide file tree
Showing 13 changed files with 2,573 additions and 916 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@
"export": "next export"
},
"dependencies": {
"@ant-design/icons": "^5.2.6",
"@babel/runtime": "^7.23.2",
"antd": "^5.11.0",
"antd": "^5.12.2",
"autoprefixer": "^10.4.16",
"next": "^14.0.1",
"nprogress": "^0.2.0",
Expand Down
27 changes: 2 additions & 25 deletions pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,37 +1,14 @@
// COMPONENTS
import Head from 'next/head'

// STYLES
import styled from 'styled-components'

// PAGES
import EdenArtFrontPage from '@/components/EdenArtFrontPage/EdenArtFrontPage'

const OverviewWrapperStyles = styled.section`
overflow: auto;
background-color: white;
flex: 1;
overflow-x: hidden;
::-moz-selection {
/* Code for Firefox */
color: red;
background: yellow;
}
::selection {
color: red;
background: yellow;
}
`

export default function IndexPage() {
return (
<OverviewWrapperStyles id="overview-wrapper">
<div>
<Head>
<title>Eden</title>
</Head>
<EdenArtFrontPage />
</OverviewWrapperStyles>
</div>
)
}
Loading

0 comments on commit cdacb1c

Please sign in to comment.