Skip to content

Commit

Permalink
fix logo
Browse files Browse the repository at this point in the history
  • Loading branch information
frankcrypto committed Feb 27, 2024
1 parent 29cb46c commit cdfb22a
Show file tree
Hide file tree
Showing 10 changed files with 116 additions and 116 deletions.
4 changes: 2 additions & 2 deletions landing-page/components/SocialLinks.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import { FaTwitter, FaTelegramPlane, FaDiscord, FaStackExchange } from 'react-icons/fa';
import Image from 'next/image'
import mirrorImage from '@assets/icons/mirror.png'
// import mirrorImage from '@assets/icons/mirror.png'



Expand Down Expand Up @@ -33,7 +33,7 @@ const SocialLinks = () => {
className="flex items-center space-x-2 text-blue-500 hover:text-blue-600"
>
<div style={{ height: '2.5em', width: '2.5em' }}>
<Image src={mirrorImage} alt="Mirror.xyz" />
<Image src='' alt="Mirror.xyz" />
</div>
<span>Official mirror.xyz</span>
</a>
Expand Down
4 changes: 2 additions & 2 deletions landing-page/components/layout/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Image from 'next/image';
import Link from 'next/link';
import React from 'react';
import logo from '@assets/4337-logo/ERC-4337-team-logo-color.svg';
// import logo from '@assets/4337-logo/ERC-4337-team-logo-color.svg';
import { INavigationItem, NavigationItems } from '@configs/home/navigation';
import { ISocialItem, SocialItems } from '@configs/home/social';

Expand All @@ -20,7 +20,7 @@ const SocialItem = ({ icon, url }: ISocialItem) => (
export default function Footer() {
return (
<div className="absolute w-full bottom-0 h-22 border-t border-grey py-5 bg-white horizon-layout">
<Image src={logo} width={120} alt="logo" />
<Image src='' width={120} alt="logo" />

<div className="flex flex-row justify-between mt-6">
<div className="flex flex-wrap max-w-sm">
Expand Down
8 changes: 4 additions & 4 deletions landing-page/components/layout/NavBar.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import Image from 'next/image';
import Link from 'next/link';
import React from 'react';
import logo from '@assets/4337-logo/ERC-4337-team-logo-color.svg';
import menu_icon from '@assets/icons/menu.svg';
// import logo from '@assets/4337-logo/ERC-4337-team-logo-color.svg';
// import menu_icon from '@assets/icons/menu.svg';
import { INavigationItem, NavigationItems } from '@configs/home/navigation';
import { Menu, Transition } from '@headlessui/react';
import { Fragment } from 'react';
Expand All @@ -19,7 +19,7 @@ export default function NavBar() {
return (
<div className="flex w-full text-xs z-50 flex-row h-[102px] items-center justify-between horizon-layout">
<Link href="/" className="self-center">
<Image src={logo} width={120} height={40} alt="logo" />
<Image src='' width={120} height={40} alt="logo" />
</Link>

<div className="hidden lg:flex flex-row gap-[59px] text-black self-center">
Expand All @@ -30,7 +30,7 @@ export default function NavBar() {

<Menu as="div" className="relative inline-block lg:hidden">
<Menu.Button className="inline-flex w-full justify-center rounded-md">
<Image src={menu_icon} alt="" className="w-5 h-5 lg:hidden" />
<Image src='' alt="" className="w-5 h-5 lg:hidden" />
</Menu.Button>
<Transition
as={Fragment}
Expand Down
10 changes: 5 additions & 5 deletions landing-page/configs/home/articles.ts
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
import { StaticImageData } from 'next/image';
import alchemy_blogpost from '@assets/articlePreviewImages/alchemy-blog-post.jpeg';
import visa_blogpost from '@assets/articlePreviewImages/visa-blog-post.png';
// import alchemy_blogpost from '@assets/articlePreviewImages/alchemy-blog-post.jpeg';
// import visa_blogpost from '@assets/articlePreviewImages/visa-blog-post.png';


export interface IArticleItem {
title: string;
subtitle: string;
previewImage: StaticImageData;
previewImage: string;
link: string;
}

export const ArticleItems: IArticleItem[] = [
{
title: 'You Could Have Invented Account Abstraction',
subtitle: 'Alchemy',
previewImage: alchemy_blogpost,
previewImage: '',
link: 'https://www.alchemy.com/blog/account-abstraction',
},
{
title: 'Auto Payments for Self-Custodial Wallets',
subtitle: 'Visa',
previewImage: visa_blogpost,
previewImage: '',
link: 'https://usa.visa.com/solutions/crypto/auto-payments-for-self-custodial-wallets.html',
},

Expand Down
Loading

0 comments on commit cdfb22a

Please sign in to comment.