Skip to content
Merged

V2 #1

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
<title>Learn web development</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
Expand Down
11 changes: 10 additions & 1 deletion src/component/Contact.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,16 @@ const Contact = () => {
className="hover:text-blue-500 hover:underline"
>
contactlearnwebdevelopment@gmail.com
</a>{" "}
</a>
<p className="text-xl font-semibold underline">telegram Id:</p>
<a
href={`https://t.me/codehangout`}
target="_blank"
rel="noreferrer"
className="hover:text-blue-500 hover:underline"
>
https://t.me/codehangout
</a>
</div>
);
};
Expand Down