Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
lucemans committed Sep 29, 2023
1 parent 1b89ca0 commit cc252b9
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 6 deletions.
9 changes: 7 additions & 2 deletions blog/src/components/DynLink.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import Image from 'next/image';
import Link from 'next/link';
import { FC } from 'react';
import { FiExternalLink, FiMail, FiTwitter, FiYoutube } from 'react-icons/fi';
import { FiExternalLink, FiMail, FiYoutube } from 'react-icons/fi';

import xLogo from '../../public/icons/x.svg';

export const DynLink: FC<{ href: string }> = ({ href, ...properties }) => {
const isExternal = href.startsWith('http');
Expand All @@ -20,7 +23,9 @@ export const DynLink: FC<{ href: string }> = ({ href, ...properties }) => {
<span className="text-ens-blue not-prose m-0 gap-1 p-0 hover:underline">
<span className="inline-flex pr-0.5 text-xs">
{isYoutube && <FiYoutube />}
{isTwitter && <FiTwitter />}
{isTwitter && (
<Image src={xLogo} alt="X" className="block h-3 w-3" />
)}
{isEmail && <FiMail />}
</span>
<Link
Expand Down
9 changes: 7 additions & 2 deletions blog/src/components/navbar/HamburgerMenu.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import Image from 'next/image';
import Link from 'next/link';
import { FC } from 'react';
import { FaDiscord, FaYoutube } from 'react-icons/fa';
import { FiGithub, FiMessageCircle, FiTwitter } from 'react-icons/fi';
import { FiGithub, FiMessageCircle } from 'react-icons/fi';

import xLogo from '../../../public/icons/x.svg';
import { CrossSVG, MenuSVG } from '../ClientIcons';

const links = [
Expand All @@ -13,7 +15,10 @@ const links = [
];

const socials = [
{ icon: <FiTwitter />, to: 'https://twitter.com/ensdomains' },
{
icon: <Image src={xLogo} className="w-5" alt="text-neutral-400" />,
to: 'https://twitter.com/ensdomains',
},
{ icon: <FiGithub />, to: 'https://github.com/ensdomains' },
{ icon: <FaDiscord />, to: 'https://chat.ens.domains' },
{
Expand Down
2 changes: 1 addition & 1 deletion content/013_frensday_announcement/meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"title": "frENSday at DevConnect",
"description": "ENS is excited to present frENSday, the premier event kicking off DevConnect 2023 in the vibrant city of Istanbul, Türkiye.",
"date": "2023-09-29",
"tags": ["frensday"],
"tags": [],
"authors": ["sadaf.eth"]
}
4 changes: 3 additions & 1 deletion content/013_frensday_announcement/readme.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ Ready to become part of the next chapter in Web3? Registration opens today, [vol

frENSday is not just an event to us; it's a step toward a more equitable, decentralized and innovative digital future.

To stay up-to-date with the latest developments, follow ENS on Twitter ([@ensdomains](https://twitter.com/ensdomains)) and for any inquiries, you can reach out to me Sadaf, our Director of Marketing, at [email protected]. Grab your ticket tomorrow and mark your calendar for November 13, 2023.
To stay up-to-date with the latest developments, follow ENS on Twitter ([@ensdomains](https://twitter.com/ensdomains)) and for any inquiries, you can reach out to me Sadaf, our Director of Marketing, at [email protected].

Grab your ticket tomorrow and mark your calendar for November 13, 2023.

See you at frENSday!

0 comments on commit cc252b9

Please sign in to comment.