From bd657eb7eafe0a84f4512ed463b2bd9106518c20 Mon Sep 17 00:00:00 2001 From: Denshooter Date: Thu, 23 Jan 2025 14:08:25 +0100 Subject: [PATCH] updata --- .idea/dataSources.xml | 12 +++++ .idea/jsLibraryMappings.xml | 6 +++ app/components/Contact.tsx | 10 ++-- app/components/Footer.tsx | 4 +- app/components/Header.tsx | 87 +++++++++++++-------------------- app/components/Hero.tsx | 2 +- app/components/Projects.tsx | 4 +- app/globals.css | 15 ++++++ app/page.tsx | 25 +++++----- public/images/off_white_bg.jpg | Bin 0 -> 3853881 bytes 10 files changed, 90 insertions(+), 75 deletions(-) create mode 100644 .idea/dataSources.xml create mode 100644 .idea/jsLibraryMappings.xml create mode 100644 public/images/off_white_bg.jpg diff --git a/.idea/dataSources.xml b/.idea/dataSources.xml new file mode 100644 index 0000000..6b93264 --- /dev/null +++ b/.idea/dataSources.xml @@ -0,0 +1,12 @@ + + + + + mongo.4 + true + com.dbschema.MongoJdbcDriver + mongodb+srv://portfolio.rbvql.mongodb.net/?retryWrites=true&w=majority&appName=Portfolio" + $ProjectFileDir$ + + + \ No newline at end of file diff --git a/.idea/jsLibraryMappings.xml b/.idea/jsLibraryMappings.xml new file mode 100644 index 0000000..d23208f --- /dev/null +++ b/.idea/jsLibraryMappings.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/components/Contact.tsx b/app/components/Contact.tsx index be728b3..e2f11b2 100644 --- a/app/components/Contact.tsx +++ b/app/components/Contact.tsx @@ -27,7 +27,7 @@ export default function Contact() { }; return ( -
+

Contact Me

@@ -42,7 +42,7 @@ export default function Contact() { type="text" name="name" placeholder="Name" - className="w-full p-2 border rounded dark:bg-gray-700 dark:border-gray-600 dark:text-white" + className="w-full p-2 border rounded dark:text-white" required value={form.name} onChange={handleChange} @@ -51,7 +51,7 @@ export default function Contact() { type="email" name="email" placeholder="Email" - className="w-full p-2 border rounded dark:bg-gray-700 dark:border-gray-600 dark:text-white" + className="w-full p-2 border rounded dark:text-white" required value={form.email} onChange={handleChange} @@ -59,7 +59,7 @@ export default function Contact() { diff --git a/app/components/Footer.tsx b/app/components/Footer.tsx index 7358724..a1c254b 100644 --- a/app/components/Footer.tsx +++ b/app/components/Footer.tsx @@ -2,7 +2,7 @@ import Link from "next/link"; export default function Footer() { return ( -