Skip to content

Commit

Permalink
Merge pull request #1 from agencyenterprise/feat/lp
Browse files Browse the repository at this point in the history
[WIP] Feat: New Landing Page
  • Loading branch information
Peixer authored Jan 17, 2024
2 parents 12387c7 + bfc463f commit 5d8c643
Show file tree
Hide file tree
Showing 18 changed files with 1,853 additions and 136 deletions.
1 change: 1 addition & 0 deletions frontend/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"react/jsx-no-target-blank": "off",
"no-extra-boolean-cast": "off",
"prefer-const": "warn",
"@next/next/no-img-element": "off",
"no-restricted-imports": ["warn", { "patterns": ["process"] }]
}
}
1 change: 1 addition & 0 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"dependencies": {
"@azns/resolver-core": "^1.6.0",
"@azns/resolver-react": "^1.6.0",
"@heroicons/react": "^2.1.1",
"@hookform/resolvers": "^3.3.2",
"@inkathon/contracts": "workspace:*",
"@polkadot/api": "^10.11.2",
Expand Down
12 changes: 12 additions & 0 deletions frontend/public/vectors/arrow.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,552 changes: 1,552 additions & 0 deletions frontend/public/vectors/bg.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions frontend/public/vectors/confirm.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions frontend/public/vectors/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions frontend/public/vectors/pay.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions frontend/public/vectors/receive.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions frontend/public/vectors/select.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions frontend/src/app/components/background.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import { FC } from 'react'

export const Background: FC = () => {
return (
<div
style={{
backgroundImage: "url('/vectors/bg.svg')",
backgroundSize: 'cover',
backgroundPosition: 'top',
backgroundRepeat: 'no-repeat',
}}
className="absolute inset-0 -z-50 h-full w-full bg-gradient-to-b from-neutral-900 via-neutral-900 to-neutral-900"
/>
)
}
Loading

0 comments on commit 5d8c643

Please sign in to comment.