diff --git a/app/App.css b/app/App.css new file mode 100644 index 0000000..e69de29 diff --git a/app/Luca.css b/app/Luca.css new file mode 100644 index 0000000..3e6bd4c --- /dev/null +++ b/app/Luca.css @@ -0,0 +1,31 @@ +/* Luca.css */ +.programmer-space { + padding: 20px; + margin: 10px; + border-radius: 8px; + color: #fff; +} + +.luca { + background-color: #4a90e2; /* Blue */ +} + +.click-button { + padding: 10px 20px; + margin-top: 10px; + border: none; + border-radius: 4px; + background-color: #fff; + color: #4a90e2; + cursor: pointer; + font-size: 16px; +} + +.click-button:hover { + background-color: #e3e3e3; +} + +.lorem-ipsum { + margin-top: 20px; + font-size: 14px; +} diff --git a/app/Luca.tsx b/app/Luca.tsx new file mode 100644 index 0000000..3c5c8a9 --- /dev/null +++ b/app/Luca.tsx @@ -0,0 +1,37 @@ +// Luca.tsx +"use client"; + +import React, { useState } from 'react'; +import './Luca.css'; // Import specific styles for Luca + +const Luca = () => { + // State to keep track of the number of clicks + const [clickCount, setClickCount] = useState(0); + + // Function to handle button click + const handleClick = () => { + setClickCount(clickCount + 1); + }; + + return ( +
Welcome, Luca! This is your programming space.
+ + {/* Button to count clicks */} + +You've clicked the button {clickCount} times!
+ + {/* Lorem Ipsum text */} ++ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. +
+Welcome, Patrick! This is your programming space.
+Welcome, Yasin! This is your programming space.
+