Skip to content

Commit

Permalink
fix duplicate pages being rendered for about page
Browse files Browse the repository at this point in the history
  • Loading branch information
fisher60 committed Apr 9, 2024
1 parent 522e8f9 commit 4f7ed16
Showing 1 changed file with 28 additions and 27 deletions.
55 changes: 28 additions & 27 deletions pages/about.vue
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>

0 comments on commit 4f7ed16

Please sign in to comment.