added favicon and malt link
This commit is contained in:
parent
8f322e5469
commit
3d301cd57f
@ -3,6 +3,7 @@
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<title>Alexandre Pommier - Portfolio</title>
|
||||
<meta name="description" content="Alexandre Pommier, étudiant en informatique à 42, développeur passionné par les technologies web et systèmes." />
|
||||
<meta name="author" content="Alexandre Pommier" />
|
||||
|
||||
4
public/favicon.svg
Normal file
4
public/favicon.svg
Normal file
@ -0,0 +1,4 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
|
||||
<rect width="100" height="100" rx="20" fill="#3b82f6"/>
|
||||
<text x="50" y="50" font-family="Montserrat, sans-serif" font-size="45" font-weight="700" fill="white" text-anchor="middle" dominant-baseline="central">AP</text>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 292 B |
@ -1,6 +1,6 @@
|
||||
import { motion } from "framer-motion";
|
||||
import { useLanguage } from "@/contexts/LanguageContext";
|
||||
import { Mail, Github, Send, Share2 } from "lucide-react";
|
||||
import { Mail, Github, Send, Share2, Briefcase } from "lucide-react";
|
||||
import { Card, CardContent } from "@/components/ui/card";
|
||||
import { Button } from "@/components/ui/button";
|
||||
import { Input } from "@/components/ui/input";
|
||||
@ -29,6 +29,12 @@ export const ContactSection = () => {
|
||||
value: "kinou-p",
|
||||
href: "https://github.com/kinou-p",
|
||||
},
|
||||
{
|
||||
icon: <Briefcase className="w-6 h-6" />,
|
||||
label: "Malt",
|
||||
value: "Alexandre Pommier",
|
||||
href: "https://www.malt.fr/profile/alexandrepommier",
|
||||
},
|
||||
];
|
||||
|
||||
const handleInputChange = (e: React.ChangeEvent<HTMLInputElement | HTMLTextAreaElement>) => {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user