diff --git a/assets/main.css b/assets/main.css index 6ab061c..3fcc456 100644 --- a/assets/main.css +++ b/assets/main.css @@ -32,6 +32,10 @@ @apply font-bounded text-[24px] leading-[140%] font-bold uppercase md:text-[48px] xl:text-[64px]; } + .h1-big { + @apply font-bounded text-[32px] leading-[140%] font-bold uppercase sm:text-[48px] xl:text-[64px]; + } + .h2-bold-bounded { @apply font-bounded text-[24px] leading-[150%] md:leading-[120%] font-bold sm:text-[36px] md:text-[40px]; } @@ -59,6 +63,10 @@ .space-25-75 { @apply space-y-[25px] sm:space-y-[75px] } + + .space-55-75 { + @apply space-y-[55px] sm:space-y-[75px] + } } .main { diff --git a/components/section/about-us-page/AboutUsDifferent.vue b/components/section/about-us-page/AboutUsDifferent.vue new file mode 100644 index 0000000..e421fa5 --- /dev/null +++ b/components/section/about-us-page/AboutUsDifferent.vue @@ -0,0 +1,69 @@ + + + diff --git a/components/section/about-us-page/AboutUsHistory.vue b/components/section/about-us-page/AboutUsHistory.vue new file mode 100644 index 0000000..95ebc86 --- /dev/null +++ b/components/section/about-us-page/AboutUsHistory.vue @@ -0,0 +1,128 @@ + + + diff --git a/components/section/about-us-page/AboutUsMain.vue b/components/section/about-us-page/AboutUsMain.vue new file mode 100644 index 0000000..2dce633 --- /dev/null +++ b/components/section/about-us-page/AboutUsMain.vue @@ -0,0 +1,82 @@ + + + diff --git a/components/section/investment-page/InvestmentFaq.vue b/components/section/investment-page/InvestmentFaq.vue index 1eabd27..cc01c90 100644 --- a/components/section/investment-page/InvestmentFaq.vue +++ b/components/section/investment-page/InvestmentFaq.vue @@ -7,13 +7,15 @@
-

{{ index }}

+

+ 0{{ index + 1 }} +

@@ -29,18 +31,14 @@ -

+

{{ item.content }}

+

+ + {{ item.text }} + +

@@ -75,8 +87,14 @@ type Component = { content: string; } ]; + sub_title: [ + { + text: string; + highlight: boolean; + } + ]; }; }; -const active = ref(0); +const active = ref(0);