diff --git a/src/app/pages/home/home.component.html b/src/app/pages/home/home.component.html
index 4613fb7..ed2c77d 100644
--- a/src/app/pages/home/home.component.html
+++ b/src/app/pages/home/home.component.html
@@ -1,31 +1,11 @@
diff --git a/src/app/pages/home/home.component.ts b/src/app/pages/home/home.component.ts
index 007fef0..b017cdc 100644
--- a/src/app/pages/home/home.component.ts
+++ b/src/app/pages/home/home.component.ts
@@ -1,15 +1,49 @@
-import { Component, OnInit } from '@angular/core';
+import { Component } from '@angular/core';
@Component({
selector: 'app-home',
templateUrl: './home.component.html',
styleUrls: ['./home.component.css']
})
-export class HomeComponent implements OnInit {
+export class HomeComponent {
- constructor() { }
-
- ngOnInit(): void {
- }
+ game = [
+ {
+ gameCover: 'assets/spiderman.avif',
+ gameLabel: 'DIGITAL',
+ gameType: 'DIGITAL | PS4 PS5',
+ gamePrice: 'R$ 399,50'
+ },
+ {
+ gameCover: 'assets/2k24.avif',
+ gameLabel: 'DIGITAL',
+ gameType: 'DIGITAL | PS4 PS5',
+ gamePrice: 'R$ 499,50'
+ },
+ {
+ gameCover: 'assets/fifa24.avif',
+ gameLabel: 'DIGITAL',
+ gameType: 'DIGITAL | PS4 PS5',
+ gamePrice: 'R$ 528,90'
+ },
+ {
+ gameCover: 'assets/callofduty.avif',
+ gameLabel: 'EXCLUSIVE',
+ gameType: 'DISC | PS5',
+ gamePrice: 'R$ 299,99'
+ },
+ {
+ gameCover: 'assets/nour.avif',
+ gameLabel: 'BEST OF YEAR',
+ gameType: 'DIGITAL | PS5',
+ gamePrice: 'R$ 79,90'
+ },
+ {
+ gameCover:'assets/eternights.avif',
+ gameLabel: 'STUDIOSAI',
+ gameType: 'DIGITAL | PS4 PS5',
+ gamePrice: 'R$ 149,50'
+ }
+ ]
}