From 7d60dbfa2c690b20b34d542847d65421b84997c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Fri, 3 Jan 2025 01:33:46 +0300 Subject: [PATCH] Add features widget --- src/components/landing/featureswidget.ts | 142 +++++++++++++++++++++++ 1 file changed, 142 insertions(+) create mode 100644 src/components/landing/featureswidget.ts diff --git a/src/components/landing/featureswidget.ts b/src/components/landing/featureswidget.ts new file mode 100644 index 0000000..e514cc9 --- /dev/null +++ b/src/components/landing/featureswidget.ts @@ -0,0 +1,142 @@ +import { Component } from '@angular/core'; +import { CommonModule } from '@angular/common'; + +@Component({ + selector: 'features-widget', + standalone:true, + imports: [ + CommonModule, + ], + template: `
+
+
+
Marvelous Features
+ Placerat in egestas erat... +
+ +
+
+
+
+ +
+
Easy to Use
+ Posuere morbi leo urna molestie. +
+
+
+ +
+
+
+
+ +
+
Fresh Design
+ Semper risus in hendrerit. +
+
+
+ +
+
+
+
+ +
+
Well Documented
+ Non arcu risus quis varius quam quisque. +
+
+
+ +
+
+
+
+ +
+
Responsive Layout
+ Nulla malesuada pellentesque elit. +
+
+
+ +
+
+
+
+ +
+
Clean Code
+ Condimentum lacinia quis vel eros. +
+
+
+ +
+
+
+
+ +
+
Dark Mode
+ Convallis tellus id interdum velit laoreet. +
+
+
+ +
+
+
+
+ +
+
Ready to Use
+ Mauris sit amet massa vitae. +
+
+
+ +
+
+
+
+ +
+
Modern Practices
+ Elementum nibh tellus molestie nunc non. +
+
+
+ +
+
+
+
+ +
+
Privacy
+ Neque egestas congue quisque. +
+
+
+ +
+
+
Joséphine Miller
+ Peak Interactive +

+ “Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.” +

+ Company logo +
+
+
+
`, +}) +export class FeaturesWidget { +}