Restructure and extra stuff
This commit is contained in:
parent
b0fc3a05c5
commit
a77312c17c
36 changed files with 250 additions and 68 deletions
|
@ -1,8 +1,8 @@
|
|||
---
|
||||
import { Image } from 'astro:assets'
|
||||
import Layout from '../layouts/Layout.astro'
|
||||
import sadshishou from '../assets/shishousad.webp'
|
||||
import SmallTitle from '../components/titles/smallTitle.astro'
|
||||
import Layout from '@layouts/Layout.astro'
|
||||
import sadshishou from '@assets/shishousad.webp'
|
||||
import SmallTitle from '@components/titles/smallTitle.astro'
|
||||
|
||||
const description = "Error. This shouldn't happen :/"
|
||||
---
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
---
|
||||
import Layout from '../layouts/Layout.astro'
|
||||
import Layout from '@layouts/Layout.astro'
|
||||
|
||||
import ContactSection from '../layouts/contactSection.astro'
|
||||
import ContactCard from '../components/cards/contactCard.astro'
|
||||
import contactdata from '../../static/data/_contactdata.json'
|
||||
import ContactSection from '@layouts/contactSection.astro'
|
||||
import ContactCard from '@components/cards/contactCard.astro'
|
||||
import contactdata from '@content/data/contactdata.json'
|
||||
|
||||
import CustomFooter from '../layouts/customFooter.astro'
|
||||
import TechnologyCard from '../components/cards/technologyCard.astro'
|
||||
import technologydata from '../../static/data/_technologydata.json'
|
||||
import SmallTitle from '../components/titles/smallTitle.astro'
|
||||
import CustomFooter from '@layouts/customFooter.astro'
|
||||
import TechnologyCard from '@components/cards/technologyCard.astro'
|
||||
import technologydata from '@content/data/technologydata.json'
|
||||
import SmallTitle from '@components/titles/smallTitle.astro'
|
||||
|
||||
const description =
|
||||
"A summary of the technologies used as well as my contact information. You'll also find disclaimers and thank you notes for the people that helped me."
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
---
|
||||
import Layout from '../../layouts/Layout.astro'
|
||||
import BlogCard from '../../components/cards/blogCard.astro'
|
||||
import BlogSection from '../../layouts/blogSection.astro'
|
||||
import SmallTitle from '../../components/titles/smallTitle.astro'
|
||||
import Layout from '@layouts/Layout.astro'
|
||||
import BlogCard from '@components/cards/blogCard.astro'
|
||||
import BlogSection from '@layouts/blogSection.astro'
|
||||
import SmallTitle from '@components/titles/smallTitle.astro'
|
||||
import { getCollection } from 'astro:content'
|
||||
|
||||
const description =
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
---
|
||||
import Layout from '../layouts/Layout.astro'
|
||||
import BaseSection from '../layouts/baseSection.astro'
|
||||
import FavouriteCard from '../components/cards/favouriteCard.astro'
|
||||
import favouritesdata from '../../static/data/_favouritesdata.json'
|
||||
import Hi from '../components/titles/title.astro'
|
||||
import AboutText from '../components/aboutText.astro'
|
||||
import Layout from '@layouts/Layout.astro'
|
||||
import BaseSection from '@layouts/baseSection.astro'
|
||||
import FavouriteCard from '@components/cards/favouriteCard.astro'
|
||||
import favouritesdata from '@content/data/favouritesdata.json'
|
||||
import Hi from '@components/titles/title.astro'
|
||||
import AboutText from '@components/aboutText.astro'
|
||||
|
||||
const description =
|
||||
'The very own page of Firq for providing informating about TA servants, listing past TA achievements and hosting a blog for talking about FGO, Programming and other stuff'
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
---
|
||||
import Layout from '../layouts/Layout.astro'
|
||||
import ServantSection from '../layouts/servantSection.astro'
|
||||
import Layout from '@layouts/Layout.astro'
|
||||
import ServantSection from '@layouts/servantSection.astro'
|
||||
|
||||
import ServantCard from '../components/cards/servantCard.astro'
|
||||
import servantdata from '../../static/data/_servantdata.json'
|
||||
import ServantCard from '@components/cards/servantCard.astro'
|
||||
import servantdata from '@content/data/servantdata.json'
|
||||
|
||||
import CeCard from '../components/cards/ceCard.astro'
|
||||
import cedata from '../../static/data/_cedata.json'
|
||||
import SmallTitle from '../components/titles/smallTitle.astro'
|
||||
import CeCard from '@components/cards/ceCard.astro'
|
||||
import cedata from '@content/data/cedata.json'
|
||||
import SmallTitle from '@components/titles/smallTitle.astro'
|
||||
|
||||
const description =
|
||||
'A list of all the servants and ces that Firq can offer up on support for TA.'
|
||||
|
|
|
@ -5,14 +5,14 @@
|
|||
// > You could have the notable ones like you do now, but at the bottom, there could be a drop-down or "expand" or "more" or
|
||||
// > some other section like that which you could click and show the rest
|
||||
|
||||
import Layout from '../layouts/Layout.astro'
|
||||
import Layout from '@layouts/Layout.astro'
|
||||
|
||||
import TaSection from '../layouts/taSection.astro'
|
||||
import TaCard from '../components/cards/taCard.astro'
|
||||
import tadata from '../../static/data/_tadata.json'
|
||||
import featured_data from '../../static/data/_featureddata.json'
|
||||
import FgotaHero from '../components/fgotaHero.astro'
|
||||
import SmallTitle from '../components/titles/smallTitle.astro'
|
||||
import TaSection from '@layouts/taSection.astro'
|
||||
import TaCard from '@components/cards/taCard.astro'
|
||||
import tadata from '@content/data/tadata.json'
|
||||
import featured_data from '@content/data/featureddata.json'
|
||||
import FgotaHero from '@components/fgotaHero.astro'
|
||||
import SmallTitle from '@components/titles/smallTitle.astro'
|
||||
|
||||
const important_data = tadata.filter(function (el) {
|
||||
return [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue