Skip to content

Commit b6f6d71

Browse files
page not a found
1 parent 305b2b4 commit b6f6d71

12 files changed

Lines changed: 919 additions & 150 deletions

src/app/app.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@ import { Component } from '@angular/core';
22
import { RouterOutlet } from '@angular/router';
33
import { LandingPageInicioComponent } from './page/landing-page-inicio/landing-page-inicio.component';
44
import { HeaderLandingPageComponent } from './page/header-landing-page/header-landing-page.component';
5+
import { NotFoundComponent } from './not-found/not-found.component';
56

67
@Component({
78
selector: 'app-root',
89
standalone: true,
9-
imports: [RouterOutlet,LandingPageInicioComponent,HeaderLandingPageComponent],
10+
imports: [RouterOutlet,LandingPageInicioComponent,HeaderLandingPageComponent,NotFoundComponent],
1011
templateUrl: './app.component.html',
1112
styleUrl: './app.component.css'
1213
})

src/app/app.routes.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import { Routes } from '@angular/router';
22
import { LandingPageInicioComponent } from './page/landing-page-inicio/landing-page-inicio.component';
3+
import { NotFoundComponent } from './not-found/not-found.component';
34

45
export const routes: Routes = [
5-
{path: '', component: LandingPageInicioComponent}
6+
{path: '', component: LandingPageInicioComponent},
7+
{path: '**', component:NotFoundComponent }
68
];
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
/*
2+
body
3+
{
4+
background-color:#141019;
5+
background: radial-gradient(at 50% -20%, #908392, #0d060e) fixed;
6+
} */
7+
8+
9+
#handboy
10+
{
11+
animation: swing ease-in-out 1.3s infinite alternate;
12+
transform-origin: 98% 98%;
13+
transform-box: fill-box;
14+
15+
}
16+
17+
18+
#girllight
19+
{
20+
animation: swing ease-in-out 1.3s infinite alternate;
21+
transform-origin: 0% 97%;
22+
transform-box: fill-box;
23+
}
24+
25+
#hairgirl
26+
{
27+
animation: swinghair ease-in-out 1.3s infinite alternate;
28+
transform-origin: 60% 0%;
29+
transform-box: fill-box;
30+
31+
}
32+
33+
#zero
34+
{
35+
transform-origin:bottom;
36+
transform-box:fill-box;
37+
38+
}
39+
40+
/*************swing************/
41+
@keyframes swing {
42+
0% { transform: rotate(10deg); }
43+
100% { transform: rotate(-10deg); }
44+
}
45+
46+
47+
/*************swing hair************/
48+
@keyframes swinghair {
49+
0% { transform: rotate(6deg); }
50+
100% { transform: rotate(-6deg); }
51+
}

src/app/not-found/not-found.component.html

Lines changed: 641 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import { ComponentFixture, TestBed } from '@angular/core/testing';
2+
3+
import { NotFoundComponent } from './not-found.component';
4+
5+
describe('NotFoundComponent', () => {
6+
let component: NotFoundComponent;
7+
let fixture: ComponentFixture<NotFoundComponent>;
8+
9+
beforeEach(async () => {
10+
await TestBed.configureTestingModule({
11+
imports: [NotFoundComponent]
12+
})
13+
.compileComponents();
14+
15+
fixture = TestBed.createComponent(NotFoundComponent);
16+
component = fixture.componentInstance;
17+
fixture.detectChanges();
18+
});
19+
20+
it('should create', () => {
21+
expect(component).toBeTruthy();
22+
});
23+
});
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import { Component } from '@angular/core';
2+
import { HeaderLandingPageComponent } from '../page/header-landing-page/header-landing-page.component';
3+
import { FooterComponent } from '../page/footer/footer.component';
4+
5+
@Component({
6+
selector: 'app-not-found',
7+
standalone: true,
8+
imports: [HeaderLandingPageComponent,FooterComponent],
9+
templateUrl: './not-found.component.html',
10+
styleUrl: './not-found.component.css'
11+
})
12+
export class NotFoundComponent {
13+
14+
}

src/app/page/footer/footer.component.css

Whitespace-only changes.
Lines changed: 146 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,146 @@
1+
<!-- End block -->
2+
<footer class="bg-white dark:bg-gray-800">
3+
<div class="max-w-screen-xl p-4 py-6 mx-auto lg:py-16 md:p-8 lg:p-10">
4+
<div class="grid grid-cols-2 gap-8 md:grid-cols-3 lg:grid-cols-5">
5+
<div>
6+
<h3 class="mb-6 text-sm font-semibold text-gray-900 uppercase dark:text-white">Company</h3>
7+
<ul class="text-gray-500 dark:text-gray-400">
8+
<li class="mb-4">
9+
<a href="#" class=" hover:underline">About</a>
10+
</li>
11+
<li class="mb-4">
12+
<a href="#" class="hover:underline">Careers</a>
13+
</li>
14+
<li class="mb-4">
15+
<a href="#" class="hover:underline">Brand Center</a>
16+
</li>
17+
<li class="mb-4">
18+
<a href="#" class="hover:underline">Blog</a>
19+
</li>
20+
</ul>
21+
</div>
22+
<div>
23+
<h3 class="mb-6 text-sm font-semibold text-gray-900 uppercase dark:text-white">Help center</h3>
24+
<ul class="text-gray-500 dark:text-gray-400">
25+
<li class="mb-4">
26+
<a href="#" class="hover:underline">Discord Server</a>
27+
</li>
28+
<li class="mb-4">
29+
<a href="#" class="hover:underline">Twitter</a>
30+
</li>
31+
<li class="mb-4">
32+
<a href="#" class="hover:underline">Facebook</a>
33+
</li>
34+
<li class="mb-4">
35+
<a href="#" class="hover:underline">Contact Us</a>
36+
</li>
37+
</ul>
38+
</div>
39+
<div>
40+
<h3 class="mb-6 text-sm font-semibold text-gray-900 uppercase dark:text-white">Legal</h3>
41+
<ul class="text-gray-500 dark:text-gray-400">
42+
<li class="mb-4">
43+
<a href="#" class="hover:underline">Privacy Policy</a>
44+
</li>
45+
<li class="mb-4">
46+
<a href="#" class="hover:underline">Licensing</a>
47+
</li>
48+
<li class="mb-4">
49+
<a href="#" class="hover:underline">Terms</a>
50+
</li>
51+
</ul>
52+
</div>
53+
<div>
54+
<h3 class="mb-6 text-sm font-semibold text-gray-900 uppercase dark:text-white">Company</h3>
55+
<ul class="text-gray-500 dark:text-gray-400">
56+
<li class="mb-4">
57+
<a href="#" class=" hover:underline">About</a>
58+
</li>
59+
<li class="mb-4">
60+
<a href="#" class="hover:underline">Careers</a>
61+
</li>
62+
<li class="mb-4">
63+
<a href="#" class="hover:underline">Brand Center</a>
64+
</li>
65+
<li class="mb-4">
66+
<a href="#" class="hover:underline">Blog</a>
67+
</li>
68+
</ul>
69+
</div>
70+
<div>
71+
<h3 class="mb-6 text-sm font-semibold text-gray-900 uppercase dark:text-white">Download</h3>
72+
<ul class="text-gray-500 dark:text-gray-400">
73+
<li class="mb-4">
74+
<a href="#" class="hover:underline">iOS</a>
75+
</li>
76+
<li class="mb-4">
77+
<a href="#" class="hover:underline">Android</a>
78+
</li>
79+
<li class="mb-4">
80+
<a href="#" class="hover:underline">Windows</a>
81+
</li>
82+
<li class="mb-4">
83+
<a href="#" class="hover:underline">MacOS</a>
84+
</li>
85+
</ul>
86+
</div>
87+
</div>
88+
<hr class="my-6 border-gray-200 sm:mx-auto dark:border-gray-700 lg:my-8">
89+
<div class="text-center">
90+
<a href="#" class="flex items-center justify-center mb-5 text-2xl font-semibold text-gray-900 dark:text-white">
91+
<img src="../assets/logo-java-jugle.png" class="h-6 mr-3 sm:h-9" alt="jugle Logo" />
92+
Java Amazonas
93+
</a>
94+
<span class="block text-sm text-center text-gray-500 dark:text-gray-400">© 2024-2025 Jugle™. All Rights
95+
Reserved. Built with <a href="#" class="text-purple-600 hover:underline dark:text-purple-500">Jugle</a> and <a
96+
href="#" class="text-purple-600 hover:underline dark:text-purple-500">Amazonas</a>.
97+
</span>
98+
<ul class="flex justify-center mt-5 space-x-5">
99+
<li>
100+
<a href="#" class="text-gray-500 hover:text-gray-900 dark:hover:text-white dark:text-gray-400">
101+
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
102+
<path fill-rule="evenodd"
103+
d="M22 12c0-5.523-4.477-10-10-10S2 6.477 2 12c0 4.991 3.657 9.128 8.438 9.878v-6.987h-2.54V12h2.54V9.797c0-2.506 1.492-3.89 3.777-3.89 1.094 0 2.238.195 2.238.195v2.46h-1.26c-1.243 0-1.63.771-1.63 1.562V12h2.773l-.443 2.89h-2.33v6.988C18.343 21.128 22 16.991 22 12z"
104+
clip-rule="evenodd" />
105+
</svg>
106+
</a>
107+
</li>
108+
<li>
109+
<a href="#" class="text-gray-500 hover:text-gray-900 dark:hover:text-white dark:text-gray-400">
110+
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
111+
<path fill-rule="evenodd"
112+
d="M12.315 2c2.43 0 2.784.013 3.808.06 1.064.049 1.791.218 2.427.465a4.902 4.902 0 011.772 1.153 4.902 4.902 0 011.153 1.772c.247.636.416 1.363.465 2.427.048 1.067.06 1.407.06 4.123v.08c0 2.643-.012 2.987-.06 4.043-.049 1.064-.218 1.791-.465 2.427a4.902 4.902 0 01-1.153 1.772 4.902 4.902 0 01-1.772 1.153c-.636.247-1.363.416-2.427.465-1.067.048-1.407.06-4.123.06h-.08c-2.643 0-2.987-.012-4.043-.06-1.064-.049-1.791-.218-2.427-.465a4.902 4.902 0 01-1.772-1.153 4.902 4.902 0 01-1.153-1.772c-.247-.636-.416-1.363-.465-2.427-.047-1.024-.06-1.379-.06-3.808v-.63c0-2.43.013-2.784.06-3.808.049-1.064.218-1.791.465-2.427a4.902 4.902 0 011.153-1.772A4.902 4.902 0 015.45 2.525c.636-.247 1.363-.416 2.427-.465C8.901 2.013 9.256 2 11.685 2h.63zm-.081 1.802h-.468c-2.456 0-2.784.011-3.807.058-.975.045-1.504.207-1.857.344-.467.182-.8.398-1.15.748-.35.35-.566.683-.748 1.15-.137.353-.3.882-.344 1.857-.047 1.023-.058 1.351-.058 3.807v.468c0 2.456.011 2.784.058 3.807.045.975.207 1.504.344 1.857.182.466.399.8.748 1.15.35.35.683.566 1.15.748.353.137.882.3 1.857.344 1.054.048 1.37.058 4.041.058h.08c2.597 0 2.917-.01 3.96-.058.976-.045 1.505-.207 1.858-.344.466-.182.8-.398 1.15-.748.35-.35.566-.683.748-1.15.137-.353.3-.882.344-1.857.048-1.055.058-1.37.058-4.041v-.08c0-2.597-.01-2.917-.058-3.96-.045-.976-.207-1.505-.344-1.858a3.097 3.097 0 00-.748-1.15 3.098 3.098 0 00-1.15-.748c-.353-.137-.882-.3-1.857-.344-1.023-.047-1.351-.058-3.807-.058zM12 6.865a5.135 5.135 0 110 10.27 5.135 5.135 0 010-10.27zm0 1.802a3.333 3.333 0 100 6.666 3.333 3.333 0 000-6.666zm5.338-3.205a1.2 1.2 0 110 2.4 1.2 1.2 0 010-2.4z"
113+
clip-rule="evenodd" />
114+
</svg>
115+
</a>
116+
</li>
117+
<li>
118+
<a href="#" class="text-gray-500 hover:text-gray-900 dark:hover:text-white dark:text-gray-400">
119+
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
120+
<path
121+
d="M8.29 20.251c7.547 0 11.675-6.253 11.675-11.675 0-.178 0-.355-.012-.53A8.348 8.348 0 0022 5.92a8.19 8.19 0 01-2.357.646 4.118 4.118 0 001.804-2.27 8.224 8.224 0 01-2.605.996 4.107 4.107 0 00-6.993 3.743 11.65 11.65 0 01-8.457-4.287 4.106 4.106 0 001.27 5.477A4.072 4.072 0 012.8 9.713v.052a4.105 4.105 0 003.292 4.022 4.095 4.095 0 01-1.853.07 4.108 4.108 0 003.834 2.85A8.233 8.233 0 012 18.407a11.616 11.616 0 006.29 1.84" />
122+
</svg>
123+
</a>
124+
</li>
125+
<li>
126+
<a href="#" class="text-gray-500 hover:text-gray-900 dark:hover:text-white dark:text-gray-400">
127+
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
128+
<path fill-rule="evenodd"
129+
d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-1.988 1.029-2.688-.103-.253-.446-1.272.098-2.65 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.379.202 2.398.1 2.651.64.7 1.028 1.595 1.028 2.688 0 3.848-2.339 4.695-4.566 4.943.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z"
130+
clip-rule="evenodd" />
131+
</svg>
132+
</a>
133+
</li>
134+
<li>
135+
<a href="#" class="text-gray-500 hover:text-gray-900 dark:hover:text-white dark:text-gray-400">
136+
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
137+
<path fill-rule="evenodd"
138+
d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10c5.51 0 10-4.48 10-10S17.51 2 12 2zm6.605 4.61a8.502 8.502 0 011.93 5.314c-.281-.054-3.101-.629-5.943-.271-.065-.141-.12-.293-.184-.445a25.416 25.416 0 00-.564-1.236c3.145-1.28 4.577-3.124 4.761-3.362zM12 3.475c2.17 0 4.154.813 5.662 2.148-.152.216-1.443 1.941-4.48 3.08-1.399-2.57-2.95-4.675-3.189-5A8.687 8.687 0 0112 3.475zm-3.633.803a53.896 53.896 0 013.167 4.935c-3.992 1.063-7.517 1.04-7.896 1.04a8.581 8.581 0 014.729-5.975zM3.453 12.01v-.26c.37.01 4.512.065 8.775-1.215.25.477.477.965.694 1.453-.109.033-.228.065-.336.098-4.404 1.42-6.747 5.303-6.942 5.629a8.522 8.522 0 01-2.19-5.705zM12 20.547a8.482 8.482 0 01-5.239-1.8c.152-.315 1.888-3.656 6.703-5.337.022-.01.033-.01.054-.022a35.318 35.318 0 011.823 6.475 8.4 8.4 0 01-3.341.684zm4.761-1.465c-.086-.52-.542-3.015-1.659-6.084 2.679-.423 5.022.271 5.314.369a8.468 8.468 0 01-3.655 5.715z"
139+
clip-rule="evenodd" />
140+
</svg>
141+
</a>
142+
</li>
143+
</ul>
144+
</div>
145+
</div>
146+
</footer>
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import { ComponentFixture, TestBed } from '@angular/core/testing';
2+
3+
import { FooterComponent } from './footer.component';
4+
5+
describe('FooterComponent', () => {
6+
let component: FooterComponent;
7+
let fixture: ComponentFixture<FooterComponent>;
8+
9+
beforeEach(async () => {
10+
await TestBed.configureTestingModule({
11+
imports: [FooterComponent]
12+
})
13+
.compileComponents();
14+
15+
fixture = TestBed.createComponent(FooterComponent);
16+
component = fixture.componentInstance;
17+
fixture.detectChanges();
18+
});
19+
20+
it('should create', () => {
21+
expect(component).toBeTruthy();
22+
});
23+
});
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import { Component } from '@angular/core';
2+
3+
@Component({
4+
selector: 'app-footer',
5+
standalone: true,
6+
imports: [],
7+
templateUrl: './footer.component.html',
8+
styleUrl: './footer.component.css'
9+
})
10+
export class FooterComponent {
11+
12+
}

0 commit comments

Comments
 (0)