Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
H
HIAST-Clinics
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
almohanad.hafez
HIAST-Clinics
Commits
89e64285
Commit
89e64285
authored
Aug 20, 2024
by
Almouhannad
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(F) Add about section to home page
parent
4e326616
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
107 additions
and
4 deletions
+107
-4
angular.json
Clinics.Frontend/angular.json
+3
-1
package-lock.json
Clinics.Frontend/package-lock.json
+10
-0
package.json
Clinics.Frontend/package.json
+1
-0
home.component.css
Clinics.Frontend/src/app/components/home/home.component.css
+46
-1
home.component.html
Clinics.Frontend/src/app/components/home/home.component.html
+46
-1
header.component.html
.../src/app/components/template/header/header.component.html
+1
-1
about.jpg
Clinics.Frontend/src/assets/images/about.jpg
+0
-0
No files found.
Clinics.Frontend/angular.json
View file @
89e64285
...
...
@@ -40,7 +40,9 @@
],
"styles"
:
[
"src/styles.scss"
,
"node_modules/bootstrap-icons/font/bootstrap-icons.css"
"node_modules/bootstrap-icons/font/bootstrap-icons.css"
,
"node_modules/@fortawesome/fontawesome-free/css/all.min.css"
],
"scripts"
:
[
"node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"
...
...
Clinics.Frontend/package-lock.json
View file @
89e64285
...
...
@@ -16,6 +16,7 @@
"@angular/platform-browser"
:
"^18.1.0"
,
"@angular/platform-browser-dynamic"
:
"^18.1.0"
,
"@angular/router"
:
"^18.1.0"
,
"@fortawesome/fontawesome-free"
:
"^6.6.0"
,
"@ng-bootstrap/ng-bootstrap"
:
"^17.0.0"
,
"@popperjs/core"
:
"^2.11.8"
,
"bootstrap"
:
"^5.3.2"
,
...
...
@@ -2934,6 +2935,15 @@
"node"
:
">=12"
}
},
"node_modules/@fortawesome/fontawesome-free"
:
{
"version"
:
"6.6.0"
,
"resolved"
:
"https://registry.npmjs.org/@fortawesome/fontawesome-free/-/fontawesome-free-6.6.0.tgz"
,
"integrity"
:
"sha512-60G28ke/sXdtS9KZCpZSHHkCbdsOGEhIUGlwq6yhY74UpTiToIh8np7A8yphhM4BWsvNFtIvLpi4co+h9Mr9Ow=="
,
"license"
:
"(CC-BY-4.0 AND OFL-1.1 AND MIT)"
,
"engines"
:
{
"node"
:
">=6"
}
},
"node_modules/@inquirer/checkbox"
:
{
"version"
:
"2.4.7"
,
"resolved"
:
"https://registry.npmjs.org/@inquirer/checkbox/-/checkbox-2.4.7.tgz"
,
...
...
Clinics.Frontend/package.json
View file @
89e64285
...
...
@@ -18,6 +18,7 @@
"@angular/platform-browser"
:
"^18.1.0"
,
"@angular/platform-browser-dynamic"
:
"^18.1.0"
,
"@angular/router"
:
"^18.1.0"
,
"@fortawesome/fontawesome-free"
:
"^6.6.0"
,
"@ng-bootstrap/ng-bootstrap"
:
"^17.0.0"
,
"@popperjs/core"
:
"^2.11.8"
,
"bootstrap"
:
"^5.3.2"
,
...
...
Clinics.Frontend/src/app/components/home/home.component.css
View file @
89e64285
/* #region
main-
home */
/* #region home */
.main-home
{
width
:
100%
;
...
...
@@ -230,3 +230,48 @@
}
/* #endregion */
/* #region about */
.about
.content
h3
{
font-size
:
2rem
;
font-weight
:
700
;
}
.about
.content
ul
{
list-style
:
none
;
padding
:
0
;
}
.about
.content
ul
li
{
display
:
flex
;
align-items
:
flex-start
;
margin-top
:
40px
;
}
.about
.content
ul
i
{
flex-shrink
:
0
;
font-size
:
48px
;
color
:
var
(
--accent-color
);
margin-right
:
20px
;
}
.about
.content
ul
h5
{
font-size
:
18px
;
font-weight
:
700
;
}
.about
.content
ul
p
{
font-size
:
15px
;
}
.about
.content
p
:last-child
{
margin-bottom
:
0
;
}
.about
.pulsating-play-btn
{
position
:
absolute
;
left
:
calc
(
50%
-
47px
);
top
:
calc
(
50%
-
47px
);
}
/* #endregion */
\ No newline at end of file
Clinics.Frontend/src/app/components/home/home.component.html
View file @
89e64285
...
...
@@ -151,6 +151,51 @@
<!-- #endregion -->
<!-- #region about -->
<section
id=
"about"
class=
"about section"
dir=
"rtl"
>
<div
class=
"container"
>
<div
class=
"row gy-4 gx-5"
>
<div
class=
"col-lg-6 position-relative align-self-start"
data-aos=
"fade-up"
data-aos-delay=
"200"
>
<img
src=
"assets/images/about.jpg"
class=
"img-fluid"
alt=
""
>
</div>
<div
class=
"col-lg-6 content"
data-aos=
"fade-up"
data-aos-delay=
"100"
>
<h3
class=
"text-center"
>
عن المستوصف
</h3>
<p
class=
"text-center"
style=
"font-weight: 600;"
>
يوفر مستوصف مركز الدراسات والبحوث العلمية الخدمات الطبية لموظفي المركز
</p>
<ul>
<li>
<i
class=
"fa-solid fa-pills"
></i>
<div
style=
"margin-right: 0.8em;"
>
<h5>
الخدمات الدوائية
</h5>
<p>
يوفر المستوصف الأدوية من خلال صيدلية المستوصف
</p>
</div>
</li>
<li>
<i
class=
"fa-solid fa-stethoscope"
></i>
<div
style=
"margin-right: 0.8em;"
>
<h5>
خدمات المعاينة
</h5>
<p>
يوفر المستوصف خدمات المعاينة الطبية من قبل أطباء المستوصف الاختصاصيين
</p>
</div>
</li>
<li>
<i
class=
"fa-solid fa-medkit"
></i>
<div
style=
"margin-right: 0.8em;"
>
<h5>
خدمات الوصفات المكررة
</h5>
<p>
يهتم المستوصف بتنظيم الوصفات الدوائية المكررة وبيانات الأمراض المزمنة للموظفين وتوفير ما يلزم من الرعاية لهم
</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- #endregion -->
</div>
\ No newline at end of file
Clinics.Frontend/src/app/components/template/header/header.component.html
View file @
89e64285
...
...
@@ -11,7 +11,7 @@
<nav
class=
"navmenu custom-buttons"
>
<ul>
<li><a><button
class=
"btn"
<li><a
href=
"#about"
><button
class=
"btn"
[
class
]="{'
btn-outline-primary
'
:
isSelected
('
About
'),
'
btn-outline-secondary
'
:
!
isSelected
('
About
')}"
(
click
)="
selectButton
('
About
')"
>
عن المستوصف
</button></a></li>
<li><a
href=
"#doctors"
><button
class=
"btn"
...
...
Clinics.Frontend/src/assets/images/about.jpg
0 → 100644
View file @
89e64285
60.5 KB
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment