diff options
Diffstat (limited to 'src/pages/en')
| -rw-r--r-- | src/pages/en/contact.astro | 5 | ||||
| -rw-r--r-- | src/pages/en/index.astro | 5 | ||||
| -rw-r--r-- | src/pages/en/portfolio.astro | 5 | ||||
| -rw-r--r-- | src/pages/en/trajectory.astro | 5 |
4 files changed, 20 insertions, 0 deletions
diff --git a/src/pages/en/contact.astro b/src/pages/en/contact.astro new file mode 100644 index 0000000..ef69d6e --- /dev/null +++ b/src/pages/en/contact.astro @@ -0,0 +1,5 @@ +--- +import ContactPageLayout from "../../layouts/ContactPageLayout.astro"; +--- + +<ContactPageLayout />
\ No newline at end of file diff --git a/src/pages/en/index.astro b/src/pages/en/index.astro new file mode 100644 index 0000000..8c5945a --- /dev/null +++ b/src/pages/en/index.astro @@ -0,0 +1,5 @@ +--- +import HomePageLayout from "../../layouts/HomePageLayout.astro"; +--- + +<HomePageLayout />
\ No newline at end of file diff --git a/src/pages/en/portfolio.astro b/src/pages/en/portfolio.astro new file mode 100644 index 0000000..63840f5 --- /dev/null +++ b/src/pages/en/portfolio.astro @@ -0,0 +1,5 @@ +--- +import PortfolioPageLayout from "../../layouts/PortfolioPageLayout.astro"; +--- + +<PortfolioPageLayout />
\ No newline at end of file diff --git a/src/pages/en/trajectory.astro b/src/pages/en/trajectory.astro new file mode 100644 index 0000000..3f5ff77 --- /dev/null +++ b/src/pages/en/trajectory.astro @@ -0,0 +1,5 @@ +--- +import TrajectoryPageLayout from "../../layouts/TrajectoryPageLayout.astro"; +--- + +<TrajectoryPageLayout />
\ No newline at end of file |
