-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
181 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
src/app/component/dialog/about-page-dialog/about-page-dialog.component.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
.about-page { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: flex-start; | ||
align-items: center; | ||
height: 95%; | ||
background-color: white; | ||
border-radius: 25px; | ||
box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px; | ||
} | ||
|
||
.header-container { | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: center; | ||
align-items: center; | ||
width: 100%; | ||
padding: 20px; | ||
} | ||
|
||
h1 { | ||
text-align: center; | ||
font-weight: 200; | ||
} | ||
|
||
.about-page-content { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: flex-start; | ||
overflow: auto; | ||
padding: 20px; | ||
} | ||
|
37 changes: 37 additions & 0 deletions
37
src/app/component/dialog/about-page-dialog/about-page-dialog.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<div class="about-page"> | ||
<header class="header-container"> | ||
<h1>About GraphWeb</h1> | ||
<p-button icon="pi pi-times" class="move-right" [rounded]="true" [text]="true" severity="danger" | ||
(onClick)="ref.close();"/> | ||
</header> | ||
<div class="about-page-content"> | ||
<div class="subheader-content"> | ||
<h3>What is GraphWeb?</h3> | ||
</div> | ||
<p> | ||
<i>GraphWeb</i> is a web application that allows users to visualize and interact with graphs and algorithms. | ||
The application provides a user-friendly interface for creating, editing, and analyzing graphs and matrices. | ||
Users can create graphs in several ways; customize the appearance of the graph. The application also provides< | ||
a set of algorithms that can be applied to the graph.<br> | ||
<br> | ||
<i>GraphWeb</i> is developed by a qualified software engineer <i>Marat Vataev</i>. | ||
</p> | ||
<div class="subheader-content"> | ||
<h3>The goal of project</h3> | ||
<p></p> | ||
</div> | ||
<p> | ||
The goal of <i>GraphWeb</i> is to simplify the process of graph visualization and manipulation for users | ||
ranging from students and educators to researchers and developers. The application provides a comprehensive | ||
platform for graph creation and analysis, enabling users to visualize and understand graph structures with ease. | ||
</p> | ||
<div class="subheader-content"> | ||
<h3>Contact</h3> | ||
</div> | ||
<p>If you faced with problems, or have recommendation feel free to reach me at:</p> | ||
<ul> | ||
<li>Email: <a href="mailto:your.email@example.com">vataevmarat@hotmail.com</a></li> | ||
<li>GitHub: <a href="https://github.com/VatMart" target="_blank">VatMart</a></li> | ||
</ul> | ||
</div> | ||
</div> |
19 changes: 19 additions & 0 deletions
19
src/app/component/dialog/about-page-dialog/about-page-dialog.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { Component } from '@angular/core'; | ||
import {Button} from "primeng/button"; | ||
import {DynamicDialogRef} from "primeng/dynamicdialog"; | ||
|
||
@Component({ | ||
selector: 'app-about-page-dialog', | ||
standalone: true, | ||
imports: [ | ||
Button | ||
], | ||
templateUrl: './about-page-dialog.component.html', | ||
styleUrl: './about-page-dialog.component.css' | ||
}) | ||
export class AboutPageDialogComponent { | ||
|
||
constructor(public ref: DynamicDialogRef) { | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.