Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add link to phone number #728

Merged
merged 1 commit into from
Feb 15, 2024
Merged
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
5 changes: 4 additions & 1 deletion layout/FAQs/components/FindUs/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { motion as Motion } from "framer-motion";

const email = "cesium@di.uminho.pt";
const tel = "+351 253 604 448";

export default function FindUs() {
return (
Expand Down Expand Up @@ -29,7 +30,9 @@ export default function FindUs() {
<a href={`mailto:${email}`}>
<li className="">{`E-mail: ${email}`}</li>
</a>
<li className="">Phone: +351 253 604 448</li>
<a href={`tel:${tel}`}>
<li className="">{`Phone: ${tel}`}</li>
</a>
</ul>
</div>
<div className="w-full select-none lg:w-3/5">
Expand Down
Loading