mirror of
https://github.com/BradNut/weddingsite
synced 2025-09-08 17:40:36 +00:00
Fixing prettier issues and compilation.
This commit is contained in:
parent
ca57a2390b
commit
42918ad8dd
4 changed files with 11 additions and 15 deletions
|
|
@ -129,13 +129,13 @@ export default function PartyPage() {
|
|||
{weddingParty.map((party, index) => (
|
||||
<PartyCard className="card" key={index}>
|
||||
<h2 className="center">{party.name}</h2>
|
||||
<CustomNextImage
|
||||
src="https://via.placeholder.com/1200x1600.png"
|
||||
alt={`${party.name} - ${party.title}`}
|
||||
objectFit="cover"
|
||||
width="1200"
|
||||
height="1600"
|
||||
/>
|
||||
<CustomNextImage
|
||||
src="https://via.placeholder.com/1200x1600.png"
|
||||
alt={`${party.name} - ${party.title}`}
|
||||
objectFit="cover"
|
||||
width="1200"
|
||||
height="1600"
|
||||
/>
|
||||
<h3 className="center">{party.title}</h3>
|
||||
</PartyCard>
|
||||
))}
|
||||
|
|
|
|||
|
|
@ -36,9 +36,7 @@ export default function QandAPage() {
|
|||
<QAStyles>
|
||||
<ol>
|
||||
<li>Question 1</li>
|
||||
<p>
|
||||
Answer 1
|
||||
</p>
|
||||
<p>Answer 1</p>
|
||||
<li>How do I get to the venue?</li>
|
||||
<p>
|
||||
See more detailed info on our{' '}
|
||||
|
|
|
|||
|
|
@ -388,7 +388,6 @@ export async function getServerSideProps({ params }) {
|
|||
|
||||
// TODO: REMOVE THIS WHEN TAKING YOUR SITE TO PRODUCTION
|
||||
if (process.env.SITE_ENV === 'TEST_SITE') {
|
||||
const group = {};
|
||||
group.id = params.id;
|
||||
group.guests = [
|
||||
{
|
||||
|
|
|
|||
|
|
@ -78,9 +78,7 @@ export default function TravelAndStayPage() {
|
|||
<div>
|
||||
<h2>Hotel Information</h2>
|
||||
<h2>Do I need to book a hotel room?</h2>
|
||||
<p>
|
||||
Answer
|
||||
</p>
|
||||
<p>Answer</p>
|
||||
<p>There are also hotels in the area such as:</p>
|
||||
<ul>
|
||||
<li>
|
||||
|
|
@ -104,7 +102,8 @@ export default function TravelAndStayPage() {
|
|||
Example 1 <RiExternalLinkLine />
|
||||
</a>
|
||||
</li>
|
||||
<p>Travel Time: X minute drive (X miles)</p><li>
|
||||
<p>Travel Time: X minute drive (X miles)</p>
|
||||
<li>
|
||||
<a
|
||||
href="https://www.hotelexample.com/"
|
||||
aria-label="Name of Hotel"
|
||||
|
|
|
|||
Loading…
Reference in a new issue