Skip to content

Commit

Permalink
add icons
Browse files Browse the repository at this point in the history
  • Loading branch information
westonnelson committed Oct 17, 2024
1 parent 64ee483 commit a3674d7
Show file tree
Hide file tree
Showing 10 changed files with 3 additions and 2 deletions.
Binary file added src/assets/avax.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 modified src/assets/background.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 src/assets/btc.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 src/assets/eth.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 src/assets/ola.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 src/assets/sol.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 src/assets/ton.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 modified src/assets/zro.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/components/CryptoTicker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ interface CryptoData {
}

const cryptoData: CryptoData[] = [
{ symbol: 'BTC', price: '$63,000', icon: <Bitcoin size={20} /> },
{ symbol: 'BTC', price: '$68,000', icon: <Bitcoin size={20} /> },
{ symbol: 'ETH', price: '$2,451', icon: <Coins size={20} /> },
{ symbol: 'SOL', price: '$146', icon: <Sun size={20} /> },
{ symbol: 'AVAX', price: '$28.55', icon: <Triangle size={20} /> },
Expand Down
3 changes: 2 additions & 1 deletion src/pages/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import OFTMigrationForm from '../components/OFTMigrationForm';
import KnowledgeCenter from '../components/KnowledgeCenter';
import FAQ from '../components/FAQ';
import { Layers } from 'lucide-react';
import zroImage from '../assets/zro.png';

const Home: React.FC = () => {
return (
Expand All @@ -11,7 +12,7 @@ const Home: React.FC = () => {
<h1 className="text-4xl font-bold mb-4">Welcome to OmniLaunch</h1>
<p className="text-xl text-gray-400 mb-2">Simplifying OFT deployments for teams and DAOs</p>
<div className="flex justify-center items-center">
<span className="text-sm text-gray-500">Powered by</span>
<span className="text-sm text-gray-500">Powered by LayerZero <img src={zroImage} alt="ZRO" className="inline-block w-6 h-6 ml-1" /></span>
<Layers size={24} className="ml-2 text-accent" />
</div>
</section>
Expand Down

0 comments on commit a3674d7

Please sign in to comment.