-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from kaogeek/develop
Search page + หน้าข้อมูลที่เกี่ยวข้อง
- Loading branch information
Showing
10 changed files
with
291 additions
and
29 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule c60-data-query
updated
21 files
+1 −1 | app.js | |
+2 −2 | data-object.js | |
+8 −4 | data.js | |
+1 −1 | data/chapter-01.json | |
+1 −0 | data/chapter-02.json | |
+1 −0 | data/chapter-03.json | |
+1 −0 | data/chapter-04.json | |
+1 −0 | data/chapter-05.json | |
+1 −0 | data/chapter-06.json | |
+1 −0 | data/chapter-07.json | |
+1 −0 | data/chapter-08.json | |
+1 −0 | data/chapter-09.json | |
+1 −1 | data/chapter-10.json | |
+1 −1 | data/chapter-11.json | |
+1 −1 | data/chapter-12.json | |
+1 −1 | data/chapter-13.json | |
+1 −1 | data/chapter-14.json | |
+1 −1 | data/chapter-15.json | |
+1 −1 | data/chapter-16.json | |
+1 −1 | data/transitory-provisions.json | |
+20 −12 | index.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
const url = "https://kaogeek.github.io"; | ||
|
||
export default function RelatedInfo() { | ||
return ( | ||
<div data-testid="related-doc"> | ||
<div className="Landing-Page-Banner-PC"> | ||
<div className="max-w-screen-xl mx-auto min-h-screen"> | ||
<h1 className="text-center lg:text-7xl md:text-6xl sm:text-4xl text-3xl font-bold text-white pt-40"> | ||
ข้อมูลที่เกี่ยวข้อง | ||
</h1> | ||
<div className="text-center text-lg px-8 flex flex-col gap-8 py-20"> | ||
<a | ||
href={`${url}/pdf/2562_ความมุ่งหมาย_คำอธิบาย_รธน_2560.pdf`} | ||
target="_blank" | ||
rel="noreferrer" | ||
className="underline text-blue-600 hover:text-blue-800 visited:text-purple-600" | ||
> | ||
ความมุ่งหมายและคำอธิบายประกอบรายมาตราของรัฐธรรมนูญแห่งราชอาณาจักรไทย | ||
พุทธศักราช 2560 | ||
</a> | ||
<a | ||
href={`${url}/pdf/2561_ความในใจของคณะกรรมการร่างรัฐธรรมนูญ2560_ส.pdf`} | ||
target="_blank" | ||
rel="noreferrer" | ||
className="underline text-blue-600 hover:text-blue-800 visited:text-purple-600" | ||
> | ||
ความในใจของคณะกรรมการร่างรัฐธรรมนูญ 2560 | ||
</a> | ||
<a | ||
href={`${url}/pdf/581005_105_240งพิเศษ.pdf`} | ||
target="_blank" | ||
rel="noreferrer" | ||
className="underline text-blue-600 hover:text-blue-800 visited:text-purple-600" | ||
> | ||
คำสั่งหัวหน้าคณะรักษาความสงบแห่งชาติ ที่ ๓๔/๒๕๕๘ เรื่อง | ||
การอำนวยความสะดวกในการจัดทำร่างรัฐธรรมนูญ | ||
</a> | ||
<a | ||
href={`${url}/pdf/2054161.pdf`} | ||
target="_blank" | ||
rel="noreferrer" | ||
className="underline text-blue-600 hover:text-blue-800 visited:text-purple-600" | ||
> | ||
ประกาศคณะรักษาความสงบแห่งชาติ เรื่อง | ||
แต่งตั้งคณะกรรมการร่างรัฐธรรมนูญ | ||
</a> | ||
<a | ||
href="/" | ||
target="_blank" | ||
rel="noreferrer" | ||
className="pt-8 underline text-blue-600 hover:text-blue-800 visited:text-purple-600" | ||
> | ||
แบบประเมินความพึงพอใจการใช้งานเว็บไซต์ | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} |
Oops, something went wrong.