-
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.
fix duplicate pages being rendered for about page
- Loading branch information
Showing
1 changed file
with
28 additions
and
27 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,33 @@ | ||
<template> | ||
<div class="text-base-content lg:mt-10 pb-10 lg:pb-20 w-full"> | ||
<h1 class="text-base-content text-center text-4xl p-8 lg:text-7xl">About Us</h1> | ||
<p class="mx-auto w-11/12 lg:w-2/3 text-2xl"> | ||
We are an experienced and diverse team of industry professionals with a wide range of skills. | ||
All of us share a passion for software developement and delivering products that utlize best practice to solve | ||
real-world problems. | ||
<br /> | ||
<br /> | ||
Most of us are career software engineers and career learners. | ||
</p> | ||
</div> | ||
|
||
|
||
<div class="text-base-content pb-10 lg:pb-20 w-full"> | ||
<h1 class=" text-center pb-4 text-4xl lg:text-7xl">Our Mission</h1> | ||
<div class="w-11/12 lg:w-2/3 mx-auto"> | ||
<p class="text-2xl"> | ||
Our mission comes in two parts: | ||
<ul class="text-2xl list-disc p-6 lg:px-10"> | ||
<li> | ||
To provide excellent and practical software solutions for all who need them | ||
</li> | ||
<li class="pt-4"> | ||
Improve the community via open source contributions and making our own codebases open source whenever possible | ||
</li> | ||
</ul> | ||
<div> | ||
<div class="text-base-content lg:mt-10 pb-10 lg:pb-20 w-full"> | ||
<h1 class="text-base-content text-center text-4xl p-8 lg:text-7xl">About Us</h1> | ||
<p class="mx-auto w-11/12 lg:w-2/3 text-2xl"> | ||
We are an experienced and diverse team of industry professionals with a wide range of skills. | ||
All of us share a passion for software developement and delivering products that utlize best practice to solve | ||
real-world problems. | ||
<br /> | ||
<br /> | ||
Most of us are career software engineers and career learners. | ||
</p> | ||
</div> | ||
|
||
<div class="text-base-content pb-10 lg:pb-20 w-full"> | ||
<h1 class=" text-center pb-4 text-4xl lg:text-7xl">Our Mission</h1> | ||
<div class="w-11/12 lg:w-2/3 mx-auto"> | ||
<p class="text-2xl"> | ||
Our mission comes in two parts: | ||
<ul class="text-2xl list-disc p-6 lg:px-10"> | ||
<li> | ||
To provide excellent and practical software solutions for all who need them | ||
</li> | ||
<li class="pt-4"> | ||
Improve the community via open source contributions and making our own codebases open source whenever possible | ||
</li> | ||
</ul> | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</template> |