Skip to content

Commit

Permalink
Update Protocol Litepaper reference in ClaimedPage and LaunchBanner c…
Browse files Browse the repository at this point in the history
…omponents
  • Loading branch information
marcinciarka committed Jun 20, 2024
1 parent 0d0c31c commit c1888ca
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion apps/rays-dashboard/app/claimed/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default async function ClaimedPage({ searchParams }: ClaimedPageProps) {
{userRays.rays.eligiblePoints.toFixed(0)} $RAYS
</Text>
<Text as="p" variant="p1" style={{ color: 'var(--color-neutral-80)' }}>
Something about points and token launch here. Remod user why they want points
Something about points and Protocol Litepaper here. Remod user why they want points
</Text>
</div>
)}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { FC, PropsWithChildren } from 'react'
import { Footer, TokenLaunchBanner } from '@summerfi/app-ui'
import { Footer, LaunchBanner } from '@summerfi/app-ui'
import Image from 'next/image'

import { NavigationWrapper } from '@/components/layout/Navigation/NavigationWrapper'
Expand All @@ -24,7 +24,7 @@ export const MasterPage: FC<PropsWithChildren<MasterPageProps>> = async ({

return (
<>
<TokenLaunchBanner />
<LaunchBanner />
<WalletInit />
<div className={classNames.mainContainer}>
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@ import Link from 'next/link'
import { Text } from '@/components/atoms/Text/Text'
import { CountDown } from '@/components/organisms/CountDown/CountDown'

import classNames from '@/components/organisms/TokenLaunchBanner/TokensLaunchBanner.module.scss'
import classNames from '@/components/organisms/LaunchBanner/LaunchBanner.module.scss'

export const TokenLaunchBanner = () => {
// TODO update once date will be known
const futureTimestamp = '2024-12-25T00:00:00'
export const LaunchBanner = () => {
const futureTimestamp = '2024-07-24T16:00:00-02:00'

return (
<div className={classNames.wrapper}>
Expand All @@ -16,7 +15,7 @@ export const TokenLaunchBanner = () => {
DeFi is about to get a lot easier
</Text>
<Text as="h5" variant="h5">
Summer.fi Token launch 👉
Protocol Litepaper Release 👉
</Text>
<Text as="p" variant="p2semi">
<Link href="/">Read announcement →</Link>
Expand Down
2 changes: 1 addition & 1 deletion packages/app-ui/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export { BannerCard } from './components/molecules/BannerCard/BannerCard'
export { Dial } from './components/molecules/Dial/Dial'
export { Table } from './components/molecules/Table/Table'

export { TokenLaunchBanner } from './components/organisms/TokenLaunchBanner/TokenLaunchBanner'
export { LaunchBanner } from './components/organisms/LaunchBanner/LaunchBanner'
export { CountDownBanner } from './components/organisms/CountDownBanner/CountDownBanner'

export { Footer } from './components/layout/Footer/Footer'
Expand Down

0 comments on commit c1888ca

Please sign in to comment.