This commit is contained in:
Zakary Timson 2022-10-31 00:04:00 -04:00
parent 99b5fa3d1e
commit 389332447d
16 changed files with 273 additions and 52 deletions

View File

@ -8,17 +8,23 @@ import { AppComponent } from './containers/app/app.component';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import {MaterialModule} from './material.module';
import {FourOFourComponent} from './views/404/404.component';
import {AboutComponent} from './views/about/about.component';
import {AestivaComponent} from './views/events/aestiva/aestiva.component';
import {CalendarComponent} from './views/events/calendar/calendar.component';
import {HibernaComponent} from './views/events/hiberna/hiberna.component';
import {GalleryComponent} from './views/gallery/gallery.component';
import {HomeComponent} from './views/home/home.component';
import {GettingStartedComponent} from './views/reenact/getting-started/getting-started.component';
import {RulesComponent} from './views/reenact/rules/rules.component';
export const APP_COMPONENTS = [
AboutComponent,
AestivaComponent,
AppComponent,
BannerComponent,
CalendarComponent,
GettingStartedComponent,
HibernaComponent,
FooterComponent,
FourOFourComponent,
GalleryComponent,

View File

@ -1,7 +1,10 @@
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import {FourOFourComponent} from './views/404/404.component';
import {AboutComponent} from './views/about/about.component';
import {AestivaComponent} from './views/events/aestiva/aestiva.component';
import {CalendarComponent} from './views/events/calendar/calendar.component';
import {HibernaComponent} from './views/events/hiberna/hiberna.component';
import {GalleryComponent} from './views/gallery/gallery.component';
import {HomeComponent} from './views/home/home.component';
import {GettingStartedComponent} from './views/reenact/getting-started/getting-started.component';
@ -9,7 +12,10 @@ import {RulesComponent} from './views/reenact/rules/rules.component';
const routes: Routes = [
{path: '', pathMatch: 'full', component: HomeComponent},
{path: 'calendar', component: CalendarComponent},
{path: 'about', component: AboutComponent},
{path: 'events/aestiva', component: AestivaComponent},
{path: 'events/hiberna', component: HibernaComponent},
{path: 'events/calendar', component: CalendarComponent},
{path: 'gallery', component: GalleryComponent},
{path: 'getting-started', component: GettingStartedComponent},
{path: 'rules', component: RulesComponent},

View File

@ -11,19 +11,17 @@ export type NavigationGroup = {
export const NAVIGATION: NavigationGroup = [
{label: 'Home', children: [[
{label: 'About', url: '/', fragment: 'about'},
{label: 'About', url: '/about'},
{label: 'Contact', url: '/', fragment: 'contact'},
{label: 'Gallery', url: '/gallery'},
]]},
{label: 'Events', children: [[
{label: 'Castra Aestiva', url: '/events', fragment: 'aestiva'},
{label: 'Castra Hiberna', url: '/events', fragment: 'hiberna'},
{label: 'Castra Aestiva', url: '/events/aestiva'},
{label: 'Castra Hiberna', url: '/events/hiberna'},
], [
{label: 'Calendar', url: '/calendar'},
{label: 'Calendar', url: '/events/calendar'},
]]},
{label: 'Learn', children: [[
{label: 'Common Questions', url: '/info/questions'},
], [
{label: 'Trajan', url: '/info/trajan'},
{label: 'Legio XXX', url: '/info/legio-xxx'},
{label: 'Legion Camp', url: '/info/camp'},
@ -32,13 +30,15 @@ export const NAVIGATION: NavigationGroup = [
{label: 'Legionairy Equipment', url: '/info/equipment'},
{label: 'Legionairy Training', url: '/info/training'},
], [
{label: 'Common Questions', url: '/info/questions'},
{label: 'Glossary', url: '/info/glossary'},
{label: 'Resources', url: '/info/resources'},
]]},
{label: 'Reenact', children: [[
{label: 'Getting Started', url: '/getting-started'},
{label: 'Rules & Regulations', url: '/rules'},
{label: 'Learn Drill', url: '/drill'},
], [
{label: 'Drill Commands', url: '/drill'},
], [
{label: 'Trusted Vendors', url: '/vendors'},
{label: 'Kit Assembly', url: '/diy'},

View File

@ -0,0 +1,86 @@
<div class="invert">
<div class="container py-4 px-3">
<div>
<h1 class="mb-2">About</h1>
<mat-divider class="mb-4"></mat-divider>
<div>
<h2 class="mb-2">Legio XXX</h2>
<p>
Legio XXX is a non-profit re-enactment group from southern Ontario & the north-eastern USA. It was established in 2004 with the goal of portraying all aspects of Roman military & civilian life.
It's members have participated in a wide range of events.
</p>
<h3 class="mb-2">Events</h3>
<div class="d-flex flex-wrap">
<div class="mx-3">
<h4 class="mb-2">Film Shoots & Commercials</h4>
<ul class="mt-0">
<li>History Channel Film Shoot (2004)</li>
<li>Movie trailer, Nashville Tennessee (2004)</li>
<li>Crocodile Film Shoot (2014)</li>
<li>BMW Commercial (2008)</li>
<li>Villa Romana Winery (2021, 2022)</li>
</ul>
</div>
<div class="mx-3">
<h4 class="mb-2">Museums</h4>
<ul class="mt-0">
<li>Canadian Museum of History (formerly the Museum of Civilization), Gatineau PQ (2005)</li>
<li>Royal Ontario Museum, Toronto ON (2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019)</li>
<li>RCR Museum, Wolseley Barracks, London ON (2019)</li>
</ul>
</div>
<div class="mx-3">
<h4 class="mb-2">Schools</h4>
<ul class="mt-0">
<li>Montessori School, Hamilton ON (2012)</li>
<li>Our Lady of Mount Carmel Academy (2016)</li>
<li>John Chrysostom Catholic Elementary School (2017)</li>
<li>Saunders Secondary School, London ON (2017, 2019)</li>
</ul>
</div>
<div class="mx-3">
<h4 class="mb-2">Conferences & Festivals</h4>
<ul class="mt-0">
<li>Toronto Living History Conference (2007)</li>
<li>Thorold Italian Festival, Thorold ON (2008)</li>
<li>Historic Merchants Xmas, Hamilton, ON (2009)</li>
<li>History Symposium, London, ON (2019)</li>
<li>Artifact Day at Longwoods Road Conservation Area (2022)</li>
</ul>
</div>
<div class="mx-3">
<h4 class="mb-2">Re-enactment Events</h4>
<ul class="mt-0">
<li>Fort Malden, Amherstburg ON (2004, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2015, 2016)</li>
<li>Roman Market Days (2004)</li>
<li>NE Route March, Erie Canal (2005)</li>
<li>Roman Days (2005)</li>
<li>Fort Meigs, Perrysburg OH (2007 and 2008)</li>
<li>Varus Disaster New Ulm Minnesota (2009)</li>
<li>New Glarus, Wisconsin (2010)</li>
<li>Legio II Castrum, ON (2010)</li>
<li>Southern Ontario Military Muster, ON (2012 and 2013)</li>
<li>Roman Field Trek, ON (2013)</li>
</ul>
</div>
</div>
<h2 class="mb-2">Castrum</h2>
<p>Legio XXX has a re-enactment facility near Tillsonburg Ontario, graciously provided by Tom Ross. Over the years, the group has constructed it's own <em>castrum</em> (fort) nestled amidst farmland and forest.</p>
<p class="mb-2">The <em>castrum</em> (fort) was slowly constructed over several years & is a work in progress:</p>
<ul class="mt-0">
<li>2007 - A <em>fossa</em> (trench) was dug and an <em>agger</em> (mound) errected from the soil</li>
<li>2008 - The front gatehouse was constructed</li>
<li>2009 - The front <em>vallum</em> (curtain walls) was added, flanking the gatehouse</li>
<li>2010 - The <em>vallum</em> (curtain walls) was finished, encircling the <em>castrum</em> (fort)</li>
<li>2011 - Four towers were added, one to each corner</li>
<li>2013 - A <em>principia</em> (headquarters building) was erected</li>
</ul>
<p class="mb-2">It continues to host our annual events:</p>
<ul class="mt-0">
<li>Castra Aestiva (2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2022)</li>
<li>Castra Hiberna (2017, 2018, 2021, 2022)</li>
</ul>
</div>
</div>
</div>
</div>

View File

@ -0,0 +1,7 @@
import {Component} from '@angular/core';
@Component({
selector: 'xxx-about',
templateUrl: './about.component.html'
})
export class AboutComponent { }

View File

@ -0,0 +1,41 @@
<div class="invert">
<div class="banner"></div>
<div class="container py-4 px-3">
<div>
<h1 class="mb-2"><em>Castra Aestiva</em> (Summer Camp)</h1>
<mat-divider></mat-divider>
<br>
</div>
<div>
<h2 class="mb-2">History</h2>
<p>
Each spring, as the weather improved, the campaign season would began. Roman troops would redeploy from a perminant <em>castra hiberna</em> (winter camp) to fair weather camps on the frontier known as <em>castra aestiva</em> (summer camps).
These marching camps could be errected in hours while under attack using the division of labour and would be completely disassembled when the legion left so they couldn't be used by the enemy.
</p>
<h2 class="mb-2">Details</h2>
<p>
Tom Ross hosts a castra aestiva event every Memorial Day weekend (in May) near Tillsonburg Ontario. It's a private multi-day training event involving Romans and their enemies and is the perfect oportunity for new Roman reenactors. Participants
sleep in <em>sub pellibus</em> (tents) within the protective walls of the <em>castrum</em> (fort). If May doesn't work for you, conscider coming to <a routerLink="/events/hiberna">Castra Hiberna</a> in September.
</p>
<h3 class="mb-0">Activities</h3>
<ul class="mt-0">
<li>Combat</li>
<li>Weapons Training</li>
<ul>
<li><em>Gladius & scutum</em> (Sword & shield)</li>
<li><em>Pilum</em> (Javlin throw)</li>
<li><em>Sagittariorum</em> (Archery)</li>
<li><em>Ballista</em> (Bolt thrower)</li>
<li><em>Funda</em> (Sling)</li>
<li>Stone throw</li>
</ul>
<li><em>Fabrica</em> (Craftsmenship)</li>
<li>Drill & Patrols</li>
<li>Campfires</li>
<li>Roman games</li>
<li>Food & Drink</li>
</ul>
<p>Come, participate and enjoy the camaraderie only the field of Mars can forge.</p>
</div>
</div>
</div>

View File

@ -0,0 +1,6 @@
.banner {
width: 100%;
height: 500px;
background: white url("/assets/img/interior.jpg") center center no-repeat;
background-size: cover;
}

View File

@ -0,0 +1,8 @@
import {Component} from '@angular/core';
@Component({
selector: 'xxx-aestiva',
templateUrl: './aestiva.component.html',
styleUrls: ['./aestiva.component.scss']
})
export class AestivaComponent { }

View File

@ -0,0 +1,42 @@
<div class="invert">
<div class="banner"></div>
<div class="container py-4 px-3">
<div>
<h1 class="mb-2"><em>Castra Hiberna</em> (Winter Camp)</h1>
<mat-divider></mat-divider>
<br>
</div>
<div>
<h2 class="mb-2">History</h2>
<p>
Harvest marked the traditional end of the Roman campaign season and the start of <em>mare clausum</em> (closed sea) in the <em>mare nostrum</em> (Mediterranean Sea) while the sea was most dangerous. Imperial troops that slept in <em>sub pellibus</em> (tents)
inside the <em>castra aestiva</em> (summer camps) began preparations to relocate to more hospitable <em>castra hiberna</em> (winter camps), where they were housed in stone lodgings impervious to the elements.
</p>
<p>In the fall, the indigenous people had to focus their efforts on harvesting crops & preparing for the cold harsh winter. This left little time for raids & hostilities giving Roman soldiers time to rest, train & recoupe.</p>
<h2 class="mb-2">Details</h2>
<p>
Tom Ross hosts a castra hiberna event in September near Tillsonburg Ontario. It's a private single day event between Romans and their adversaries. It's an excellent oportunity for new Roman reenactors. If May doesn't work for you, conscider coming to
<a routerLink="/events/aestiva">Castra Aestiva</a> in May.
</p>
<h3 class="mb-0">Activities</h3>
<ul class="mt-0">
<li>Combat</li>
<li>Weapons Training</li>
<ul>
<li><em>Gladius & scutum</em> (Sword & shield)</li>
<li><em>Pilum</em> (Javlin throw)</li>
<li><em>Sagittariorum</em> (Archery)</li>
<li><em>Ballista</em> (Bolt thrower)</li>
<li><em>Funda</em> (Sling)</li>
<li>Stone throw</li>
</ul>
<li><em>Fabrica</em>/Craftsmenship</li>
<li>Drill & Patrols</li>
<li>Campfires</li>
<li>Roman games</li>
<li>Food & Drink</li>
</ul>
<p>Come, participate and enjoy the camaraderie only the field of Mars can forge.</p>
</div>
</div>
</div>

View File

@ -0,0 +1,6 @@
.banner {
width: 100%;
height: 500px;
background: white url("/assets/img/morning-mist.jpg") center center no-repeat;
background-size: cover;
}

View File

@ -0,0 +1,8 @@
import {Component} from '@angular/core';
@Component({
selector: 'xxx-hiberna',
templateUrl: './hiberna.component.html',
styleUrls: ['./hiberna.component.scss']
})
export class HibernaComponent { }

View File

@ -58,7 +58,9 @@
<br><br>
Legio XXX is looking for new recruits.
<br><br>
Check out the <a routerLink="/getting-started">Getting Started</a> page to learn more!
Check out the <a routerLink="/getting-started">Getting Started</a> page to learn more.
<br><br>
Family participation is welcome!
</p>
</div>
</div>

View File

@ -4,24 +4,29 @@
<h1 class="mb-4">Getting Started</h1>
<mat-divider></mat-divider>
<div class="mx-5 my-5 text-center text-muted">
<h3 class="text-center mb-1 ms-3">Sacramentum Militare - Military Sacrament (Oath of Alligence)</h3>
<p class="fst-italic">Iurant autem milites omnia se strenue facturos quae praeceperit imperator, numquam deserturos militiam nec mortem recusaturos pro Romana republica!</p>
<p>But the soldiers swear that they shall faithfully execute all that the Emperor commands, that they shall never desert the service, and that they shall not seek to avoid death for the Roman republic!</p>
<p class="text-end fst-italic me-3">~ Vegetius 2. 5</p>
<h3 class="text-center mb-1 ms-3"><em>Sacramentum Militare</em> (Military Sacrament)</h3>
<p><em>"Iurant autem milites omnia se strenue facturos quae praeceperit imperator, numquam deserturos militiam nec mortem recusaturos pro Romana republica!"</em></p>
<p>"But the soldiers swear that they shall faithfully execute all that the Emperor commands, that they shall never desert the service, and that they shall not seek to avoid death for the Roman republic!"</p>
<p class="text-end me-3"><em>~ Vegetius 2. 5</em></p>
</div>
<mat-divider class="mb-4"></mat-divider>
<div>
<p>
Historically, prospective legionaries had to be at least 17 years old, however exceptions can made for mature individuals. Members must be able to physically perform the role that they portray in a
realistic manner.
</p>
<h2 class="mb-2">Prologue</h2>
<p>Imagine yourself as part of a heavily armoured column of Roman soldiers slowly marching along a narrow forest road. The sun beats mercilessly down on you in-between the shadows, and the humming sound of cicadas rattles off of your helmet.</p>
<p>You vigilantly scan the dense brush for any sign of the Celtic rebels that have been haunting the area. As the column swings around a sharp bend, there is a sudden commotion to the front, and an officer screams, “shields up” just as a rain of missiles slams into you. No sooner have the projectiles bounced off of your shield than the order to form a battle line is shouted.</p>
<p>As you jostle into position to meet the enemy charge, you turn your head just in time to see the forest come alive with Celtic warriors in a frenzy. Will you live? Will you die? Join Legio XXX and experience the life of legionary first hand.</p>
<h2 class="mb-2">Enlisting</h2>
<p>
If reenacting is something you would seriously like to do, great! Interest in the history of Rome is the primary requirement and you are in the right place. This guide walk you through everything
you need to know to get started. Aquiring a full kit may take some time & cost a couple thousand dollars (USD/CAD) however we provide <a routerLink="/diy">manuals</a> to build equipment yourself
to save on costs. With enough notice we may be able to loan any equipment you are missing for an event, please let us know.
</p>
<h3>Steps</h3>
<ul>
<p>
Historically, prospective legionaries had to be at least 17 years old, however exceptions can made for mature individuals. Members must be able to physically perform the role that they portray in a
realistic manner.
</p>
<h3 class="mb-0">Next Steps</h3>
<ul class="mt-0">
<li>Familiarize yourself with <a routerLink="/rules">our rules</a></li>
<li>Pick out a Roman name:</li>
<ul>
@ -31,22 +36,21 @@
</ul>
<li><a routerLink="/vendors">Purchase</a> or <a routerLink="/diy">assemble</a> your equipment, ordered by priority:</li>
<ul>
<li><span class="fw-bold"><span class="fst-italic">Tunica</span>/Tunic</span> - A large shirt/dress held at the waist by a cord or cloth belt</li>
<li><span class="fw-bold"><span class="fst-italic">Caligae</span>/Sandles</span> - Modern leather sandles will do in a pinch</li>
<li><span class="fw-bold"><span class="fst-italic">Balteus</span>/Belt</span> - A lether ordimental apron used to afix weapons</li>
<li><span class="fw-bold"><span class="fst-italic">Pugio</span>/Dagger</span> - Attached to the Balteus</li>
<li><span class="fst-italic">Cassis</span>/Helmet - To protect the noggin!</li>
<li><span class="fst-italic">Gladius</span>/Sword - The primary weapon of the empire</li>
<li><span class="fst-italic">Scutum</span>/Shield - A large semicircle shield</li>
<li><span class="fst-italic">Lorica</span>/Armour - Segmata, hamata or plumata/squamta</li>
<li><span class="fst-italic">Subarmalis</span>/Padded Vest - Additional comfort & protection</li>
<li><span class="fst-italic">Focale</span>/Scarf - Protects the neck from chaifing</li>
<li><span class="fst-italic">Pilum</span>/Javlin - A ranged weapon</li>
<li><span class="fw-bold"><em>Tunica</em> (Tunic)</span> - A large shirt/dress held at the waist by a cord or cloth belt</li>
<li><span class="fw-bold"><em>Caligae</em> (Sandles)</span> - Modern leather sandles will do in a pinch</li>
<li><span class="fw-bold"><em>Balteus</em> (Belt)</span> - A lether ordimental apron used to afix weapons</li>
<li><span class="fw-bold"><em>Pugio</em> (Dagger)</span> - Attached to the Balteus</li>
<li><em>Cassis</em> (Helmet) - To protect the noggin!</li>
<li><em>Gladius</em> (Sword) - The primary weapon of the empire</li>
<li><em>Scutum</em> (Shield) - A large semicircle shield</li>
<li><em>Lorica</em> (Armour) - Segmata, hamata or plumata/squamta</li>
<li><em>Subarmalis</em> (Padded Vest) - Additional comfort & protection</li>
<li><em>Focale</em> (Scarf) - Protects the neck from chaifing</li>
<li><em>Pilum</em> (Javlin) - A ranged weapon</li>
</ul>
<li>Submit an <a>application</a></li>
</ul>
</div>
<br>
</div>
</div>
</div>

View File

@ -8,7 +8,7 @@
<div>
<h2 class="mb-2">General</h2>
<p>It is the responsibility of members to:</p>
<ol>
<ol class="mt-1">
<li>Respect the chain of command</li>
<li>Behave like a professional Roman soldier</li>
<li>Follow the dress code at all times & stay in charchter</li>
@ -20,9 +20,9 @@
<strong>Do not hesitate to admit when you don't know the answer & refer to someone else</strong>
</li>
<li>Posses the minimum amount of kit needed to participate (Let us know if you need something)</li>
<li>Equipment is to be as period correct and functional as materials and costs permits</li>
<li>Equipment is to be as period correct and functional as materials and costs permit</li>
<li>All kit should be inspected for cleanliness and serviceability; see our <a href="/maintinance">maintinace guide</a></li>
<li>Absolutely <strong>no</strong> modern day paraphernalia is permitted (i.e., sunglasses, eyeglasses, wrist watches, piercings of any kind, eccentric hair colour, inappropriate visible tattoos, etc.)</li>
<li>Absolutely no modern day paraphernalia is permitted (i.e., sunglasses, eyeglasses, wrist watches, piercings of any kind, eccentric hair colour, inappropriate visible tattoos, etc.)</li>
<li>Some modern equipment (camping, food, etc.) is permitted after hours provided it is hidden during operational hours</li>
<li>During public events all belongings should be secured by at least one member or an assistant</li>
</ol>
@ -36,23 +36,23 @@
</p>
<h4 class="mb-0">Minumum</h4>
<small class="text-muted">Around camp & public events</small>
<ul>
<li><span class="fst-italic">Tunica</span>/Tunic - A large shirt/dress held at the waist by a cord or cloth belt</li>
<li><span class="fst-italic">Caligae</span>/Sandles - Modern leather sandles will do in a pinch</li>
<li><span class="fst-italic">Balteus</span>/Belt - A lether ordimental apron used to afix weapons</li>
<li><span class="fst-italic">Pugio</span>/Dagger - Attached to the <span class="fst-italic">Balteus</span></li>
<ul class="mt-1">
<li><em>Tunica</em> (Tunic) - A large shirt/dress held at the waist by a cord or cloth belt</li>
<li><em>Caligae</em> (Sandles) - Modern leather sandles will do in a pinch</li>
<li><em>Balteus</em> (Belt) - A lether ordimental apron used to afix weapons</li>
<li><em>Pugio</em> (Dagger) - Attached to the <em>Balteus</em></li>
</ul>
<h4 class="mb-0">Tactical Kit</h4>
<h4 class="mb-0">Battle Dress</h4>
<small class="text-muted">During drill & demonstraitions</small>
<ul>
<ul class="mt-1">
<li>Everything above</li>
<li><span class="fst-italic">Cassis</span>/Helmet - To protect the noggin!</li>
<li><span class="fst-italic">Subarmalis</span>/Padded Vest - Additional comfort & protection</li>
<li><span class="fst-italic">Lorica</span>/Armour - Segmata, hamata or plumata/squamta</li>
<li><span class="fst-italic">Focale</span>/Scarf - Protects the neck from chaifing</li>
<li><span class="fst-italic">Gladius</span>/Sword - The primary weapon of the empire</li>
<li><span class="fst-italic">Scutum</span>/Shield - A large semicircle shield</li>
<li><span class="fst-italic">Pilum</span>/Javlin - A ranged weapon</li>
<li><em>Cassis</em> (Helmet) - To protect the noggin!</li>
<li><em>Subarmalis</em> (Padded Vest) - Additional comfort & protection</li>
<li><em>Lorica</em> (Armour) - Segmata, hamata or plumata/squamta</li>
<li><em>Focale</em> (Scarf) - Protects the neck from chaifing</li>
<li><em>Gladius</em> (Sword) - The primary weapon of the empire</li>
<li><em>Scutum</em> (Shield) - A large semicircle shield</li>
<li><em>Pilum</em> (Javlin) - A ranged weapon</li>
</ul>
<h3 class="mb-2">Non-Legionaries</h3>
<p>Any reenacters are welcome as long as they stay period correct to the 2nd centery AD. This may include civilians, barbarians & Greeks.</p>
@ -60,9 +60,8 @@
<div>
<h2 class="mb-2">Weapons</h2>
<p>The inappropriate use of weapons will not be tolerated:</p>
<ol>
<li>Inappropriate use of weapons will not be tolerated</li>
<li>The use of the warning “Clear” will precede the drawing of weapons</li>
<ol class="mt-1">
<li>Use the verbal warning “Clear” before drawing weapons</li>
<li>Always follow the instructions of the Range Safety Officer (RSO) when applicaple</li>
<li>Weapons are not to be handled by the public, under any circumstance</li>
<li>Swords and daggers will be secured at all events with a device to ensure that they cannot be removed by unauthorized personnel</li>
@ -71,7 +70,7 @@
<div>
<h2 class="mb-2">Disciplinary Actions</h2>
<p>Failure to act safely & professionally may result in the following disciplinary actions:</p>
<ul>
<ul class="mt-1">
<li>Verbal warnings</li>
<li>Removal of weapons</li>
<li>Expulsion from event</li>

BIN
src/assets/img/interior.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 143 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 495 KiB