diff --git a/assets/css/custom.css b/assets/css/custom.css new file mode 100644 index 0000000..bb0fe79 --- /dev/null +++ b/assets/css/custom.css @@ -0,0 +1,22 @@ +body { + font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; +} + +h1, h2, h3, h4, h5, h6 { + font-family: Georgia, serif; +} + +.hero { + background: #1a1a1a; + color: white; + padding: 100px 0; +} + +.section { + padding: 60px 0; +} + +.footer { + background: #f8f9fa; + padding: 40px 0; +} diff --git a/assets/js/main.js b/assets/js/main.js new file mode 100644 index 0000000..3566977 --- /dev/null +++ b/assets/js/main.js @@ -0,0 +1,9 @@ +document.querySelectorAll('a[href^="#"]').forEach(anchor => { + anchor.addEventListener('click', function (e) { + e.preventDefault(); + + document.querySelector(this.getAttribute('href')).scrollIntoView({ + behavior: 'smooth' + }); + }); +}); diff --git a/index.php b/index.php index 7205f3d..35fae5b 100644 --- a/index.php +++ b/index.php @@ -1,150 +1,76 @@ - - + - - - New Style - - - - - - - - - - - - - - - - - - - + + + Personal Website + + + -
-
-

Analyzing your requirements and generating your website…

-
- Loading… -
-

AI is collecting your requirements and applying the first changes.

-

This page will update automatically as the plan is implemented.

-

Runtime: PHP — UTC

-
-
- + + + +
+
+

Welcome to My Personal Site

+

Showcasing my work and projects.

+ View Portfolio +
+
+ +
+
+

About Me

+

This is a placeholder for the about section. You can write a brief introduction about yourself here.

+
+
+ +
+
+

Portfolio

+

This is a placeholder for your portfolio. You can showcase your projects with images, descriptions, and links.

+
+
+ +
+
+

Contact Me

+

This is a placeholder for your contact form.

+
+
+ + + + + - + \ No newline at end of file