mirror of
https://github.com/liyunze-coding/RythonDev.git
synced 2026-09-22 15:53:57 +00:00
organized components folder
This commit is contained in:
parent
0576ca809d
commit
f6f0129aa0
10 changed files with 14 additions and 14 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
import Card from "./Card.astro";
|
import Card from "../elements/Card.astro";
|
||||||
import Line from "./NetworkLine.astro";
|
import Line from "../elements/NetworkLine.astro";
|
||||||
---
|
---
|
||||||
|
|
||||||
<div id="Experience" class="h-fit py-20">
|
<div id="Experience" class="h-fit py-20">
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
import Card from "../components/Card.astro";
|
import Card from "../elements/Card.astro";
|
||||||
import Line from "../components/NetworkLine.astro";
|
import Line from "../elements/NetworkLine.astro";
|
||||||
---
|
---
|
||||||
|
|
||||||
<div class="w-full h-fit pt-20">
|
<div class="w-full h-fit pt-20">
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
import Card from "../components/Card.astro";
|
import Card from "../elements/Card.astro";
|
||||||
---
|
---
|
||||||
|
|
||||||
<div class="w-full flex flex-col justify-center items-center">
|
<div class="w-full flex flex-col justify-center items-center">
|
||||||
|
|
@ -1,14 +1,14 @@
|
||||||
---
|
---
|
||||||
import NavBar from "../components/NavBar.astro";
|
import NavBar from "../components/sections/NavBar.astro";
|
||||||
import Layout from "../layouts/Layout.astro";
|
import Layout from "../layouts/Layout.astro";
|
||||||
import NetworkLine from "../components/NetworkLine.astro";
|
import NetworkLine from "../components/elements/NetworkLine.astro";
|
||||||
import WhatIDo from "../components/WhatIDo.astro";
|
import WhatIDo from "../components/sections/WhatIDo.astro";
|
||||||
import Intro from "../components/Intro.svelte";
|
import Intro from "../components/sections/Intro.svelte";
|
||||||
import Projects from "../components/Projects.svelte";
|
import Projects from "../components/sections/Projects.svelte";
|
||||||
import Education from "../components/Education.astro";
|
import Education from "../components/sections/Education.astro";
|
||||||
import Skills from "../components/Skills.astro";
|
import Skills from "../components/sections/Skills.astro";
|
||||||
import Contact from "../components/Contact.astro";
|
import Contact from "../components/sections/Contact.astro";
|
||||||
import Card from "../components/Card.astro";
|
import Card from "../components/elements/Card.astro";
|
||||||
---
|
---
|
||||||
|
|
||||||
<Layout title="Ryan's Portfolio">
|
<Layout title="Ryan's Portfolio">
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue