diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 34f987c..9d204ec 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,3 +1,5 @@ +image: alpine:latest + pages: stage: deploy script: @@ -8,4 +10,4 @@ pages: paths: - public only: - - main + - main \ No newline at end of file diff --git a/index.html b/index.html deleted file mode 100644 index 8a8971e..0000000 --- a/index.html +++ /dev/null @@ -1,51 +0,0 @@ - - - - - [Your Name] · [Your Title] - - - - - - - - - - - -
-
-
- - - -
-

- Hello, I'm [Your Name] - ( - @[Your Handle] - ) -

-

- I'm a [Your Title] -

-

- I'm a [Your Role] at [Your Company], [Brief company description]. -

-
-

- Your personal statement about what you do and what you're interested in. Add your contact preferences here. -

-
-

- - [Your Name] - @[Your Handle] - ) -

-
-
- - \ No newline at end of file diff --git a/public/image.jpg b/public/image.jpg new file mode 100644 index 0000000..adbce03 Binary files /dev/null and b/public/image.jpg differ diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..15ca5e3 --- /dev/null +++ b/public/index.html @@ -0,0 +1,46 @@ + + + + + + Dummy Business + + + +
+ +
+
+
+

Welcome to Dummy Business

+

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sit amet nulla auctor, vestibulum magna sed, convallis ex.

+ +
+
+

About Us

+

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sit amet nulla auctor, vestibulum magna sed, convallis ex.

+ Dummy Image +
+
+

Get in Touch

+

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sit amet nulla auctor, vestibulum magna sed, convallis ex.

+
+ + + + +
+
+
+ + + + \ No newline at end of file diff --git a/public/script.js b/public/script.js new file mode 100644 index 0000000..daec0c2 --- /dev/null +++ b/public/script.js @@ -0,0 +1,2 @@ +// Add some dummy JavaScript functionality +console.log("Dummy Business website loaded!"); \ No newline at end of file diff --git a/public/style.css b/public/style.css new file mode 100644 index 0000000..7105e39 --- /dev/null +++ b/public/style.css @@ -0,0 +1,68 @@ +body { + font-family: Arial, sans-serif; + margin: 0; + padding: 0; +} + +header { + background-color: #333; + color: #fff; + padding: 1em; + text-align: center; +} + +header nav ul { + list-style: none; + margin: 0; + padding: 0; + display: flex; + justify-content: space-between; +} + +header nav ul li { + margin-right: 20px; +} + +header nav a { + color: #fff; + text-decoration: none; +} + +main { + display: flex; + flex-direction: column; + align-items: center; + padding: 2em; +} + +section { + background-color: #f7f7f7; + padding: 2em; + margin-bottom: 20px; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); +} + +h1, h2 { + color: #333; +} + +button { + background-color: #333; + color: #fff; + border: none; + padding: 10px 20px; + font-size: 16px; + cursor: pointer; +} + +button:hover { + background-color: #444; +} + +footer { + background-color: #333; + color: #fff; + padding: 1em; + text-align: center; + clear: both; +} \ No newline at end of file diff --git a/style.css b/style.css deleted file mode 100644 index 6d6e057..0000000 --- a/style.css +++ /dev/null @@ -1,137 +0,0 @@ -body { - margin: 0; - padding: 0; - background: #000; - color: #f4f4f4; - font-family: "Graphik Web", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Helvetica", "Segoe UI", Roboto, Ubuntu, sans-serif; - font-weight: 400; - font-smooth: antialiased; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - } - - a { - color: #ff310a; - text-decoration: none; - } - - a:hover { - color: #CFEF54 - } - - .content { - max-width: 40rem; - margin: 0 auto; - } - - img.photo { - border-radius: 50%; - } - - p { - font-size: 1.5rem; - line-height: 1.4; - margin: 0; - letter-spacing: -0.05rem; - } - - h2 { - font-weight: 400; - line-height: 1.3; - letter-spacing: -0.05rem; - } - - .smallcaps { - font-variant: small-caps; - color:#333; - } - - .gray{ - color: #999; - } - - .preloader { - display: flex; - justify-content: center; - align-items: center; - height: 100vh; - height: -moz-available; - height: -webkit-fill-available; - height: fill-available; - width: 100%; - background: #000; - position: fixed; - top: 0; - left: 0; - z-index: 9999; - transition: opacity 0.3s linear; - transform: translate3d(0, 0, 0); - } - - body.loaded .preloader { - opacity: 0; - } - - .fade { - animation: fadeIn 1s ease-in-out both; - } - - .fade:nth-child(2) { - animation-delay: 1s; - } - - .fade:nth-child(3) { - animation-delay: 2s; - } - - .fade:nth-child(4) { - animation-delay: 3s; - } - - .fade:nth-child(5) { - animation-delay: 4s; - } - - .fade:nth-child(6) { - animation-delay: 5s; - } - - .fade:nth-child(7) { - animation-delay: 6s; - } - - .fade:nth-child(8) { - animation-delay: 7s; - } - - .fade:nth-child(9) { - animation-delay: 8s; - } - - .fade:nth-child(10) { - animation-delay: 9s; - } - - .fade:nth-child(11) { - animation-delay: 10s; - } - - .fade:nth-child(12) { - animation-delay: 11s; - } - - .fade:nth-child(13) { - animation-delay: 12s; - } - - @keyframes fadeIn { - from { - opacity: 0; - transform: translate3d(0, 0%, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - } - } - \ No newline at end of file