Skip to content

Commit

Permalink
Merge pull request #826 from TrustlessComputer/arch/new-home-1
Browse files Browse the repository at this point in the history
Arch/new home 1
  • Loading branch information
sigmar-const authored Nov 12, 2024
2 parents 810f830 + 7a7338a commit 05fe3c0
Show file tree
Hide file tree
Showing 53 changed files with 1,459 additions and 1,153 deletions.
Binary file added public/landing-v7/home-alpha-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/landing-v7/home-arcade-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/landing-v7/home-bitcoinwar-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/landing-v7/home-eternal-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/landing-v7/home-flux-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/landing-v7/home-heartbeats-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/landing-v7/home-heartbeats-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/landing-v7/home-heartbeats-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/landing-v7/home-llama-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/landing-v7/home-naka-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/landing-v7/home-perp-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/landing-v7/home-studio-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/landing-v7/home-timechain-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/landing-v7/home-timechain-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/Providers/ContactUsProvider/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const ContactUsProvider: React.FC<PropsWithChildren> = ({
setParams(params);
setShowContactUsModal(true);
setSubjectDefault(
params.subjectDefault !== undefined ? params.subjectDefault : 3,
params?.subjectDefault !== undefined ? params?.subjectDefault : 3,
);
};

Expand Down
14 changes: 9 additions & 5 deletions src/app/build-bitcoin/page.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { CDN_URL } from '@/config';
import { APP_NAME } from '@/config/metadata';
import MainLayout from '@/layouts/MainLayout';
import LandingV3 from '@/modules/landingV3';
import { Metadata } from 'next';
import Landing from '@/modules/landing';

const THUMBNAIL = `${CDN_URL}/pages/build-bitcoin/build-bitcoin-metadata.png`;

Expand Down Expand Up @@ -30,16 +30,20 @@ export const metadata: Metadata = {
},
};

// import LandingV3 from '@/modules/landingV3';

export default function Home() {
return (
<MainLayout
headerProps={{
color: 'black',
colorLogo: 'black',
// color: 'white',
// colorLogo: 'white',
// bgColor: '#1C1C1C',
theme: 'white',
}}
footerClassName={'mt-0'}
hideFooter
>
<LandingV3 />
<Landing />
</MainLayout>
);
}
21 changes: 21 additions & 0 deletions src/app/home-rollback/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
'use client';

import MainLayout from '@/layouts/MainLayout';
import Landing from '@/modules/landing';
// import LandingV3 from '@/modules/landingV3';

export default function Home() {
return (
<MainLayout
headerProps={{
// color: 'white',
// colorLogo: 'white',
// bgColor: '#1C1C1C',
theme: 'white',
}}
hideFooter
>
<Landing />
</MainLayout>
);
}
6 changes: 2 additions & 4 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
'use client';

import MainLayout from '@/layouts/MainLayout';
import LandingV3 from '@/modules/landingV3';
// import LandingV3 from '@/modules/landingV3';
import LandingV4Module from '@/modules/landingV4';
import LandingV5 from '@/modules/landingV5';

export default function Home() {
Expand All @@ -17,8 +15,8 @@ export default function Home() {
}}
hideFooter
>
<LandingV3 />
{/* <LandingV5 /> */}
{/* <LandingV3 /> */}
<LandingV5 />
</MainLayout>
);
}
6 changes: 3 additions & 3 deletions src/components/ContactUsModal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -407,14 +407,14 @@ const ContactUsModal = ({
<Text fontSize={['18px', '20px', '24px']} fontWeight={500}>
{params?.title
? params.title
: params.changeText
: params?.changeText
? 'Finish your setup'
: 'Get a personalized demo'}
</Text>
<Text fontSize={['14', '16']} fontWeight={400}>
{params?.description
? params.description
: params.changeText
: params?.changeText
? 'Your setup requires manual assistance. We’ll reach out to you shortly to help complete it.'
: 'Help us tailor the demo experience to your needs.'}
</Text>
Expand Down Expand Up @@ -570,7 +570,7 @@ const ContactUsModal = ({
borderRadius={'8px'}
fontSize={['18px']}
border="1px solid #E7E7E7"
disabled={params.disableSelect}
disabled={params?.disableSelect}
_hover={{}}
onChange={(e) => {
setSubject(Number(e.target.value));
Expand Down
3 changes: 2 additions & 1 deletion src/constants/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ export const VIDEOS_CDN = `https://cdn.eternalai.org/videos`;
export const VIDEO_BVM_STUDIO_HOW_IT_WORK =
'https://storage.googleapis.com/tc-cdn-prod/pages/landing-v4/BitcoinStudio_Intro_04.mp4';

export const VIDEO_HERO_MAIN = 'https://storage.googleapis.com/bvm-network/videos/BVM_Full_v2.mp4'
export const VIDEO_HERO_MAIN =
'https://storage.googleapis.com/tc-cdn-prod/pages/home/BVM_Full_v3.mp4';
Loading

0 comments on commit 05fe3c0

Please sign in to comment.