├── .gitignore ├── LICENSE ├── Makefile ├── assets ├── font.woff2 ├── hero.webp └── main.css ├── astro-project ├── adapter │ ├── index.mjs │ └── server-entrypoint.mjs ├── astro.config.mjs ├── package-lock.json ├── package.json ├── render.mjs └── src │ ├── all.ts │ ├── components │ ├── Counter.jsx │ ├── Hello.astro │ └── ReactWrapper.astro │ ├── env.d.ts │ └── pages │ └── index.astro ├── index.php └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | 2 | .PHONY: build 3 | build: 4 | cd astro-project && npm run build 5 | 6 | .PHONY: serve 7 | serve: 8 | @php -S localhost:8000 -------------------------------------------------------------------------------- /assets/font.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/astro-in-php-example/6c9d31d54db588c404c620ba4d9e25fad2358a5f/assets/font.woff2 -------------------------------------------------------------------------------- /assets/hero.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/astro-in-php-example/6c9d31d54db588c404c620ba4d9e25fad2358a5f/assets/hero.webp -------------------------------------------------------------------------------- /assets/main.css: -------------------------------------------------------------------------------- 1 | *,:before,:after { 2 | box-sizing: border-box; 3 | border-width: 0; 4 | border-style: solid; 5 | border-color: #e5e7eb 6 | } 7 | 8 | :before,:after { 9 | --tw-content: "" 10 | } 11 | 12 | html { 13 | line-height: 1.5; 14 | -webkit-text-size-adjust: 100%; 15 | -moz-tab-size: 4; 16 | -o-tab-size: 4; 17 | tab-size: 4; 18 | font-family: Inter Variable,Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji"; 19 | font-feature-settings: normal; 20 | font-variation-settings: normal 21 | } 22 | 23 | body { 24 | margin: 0; 25 | line-height: inherit 26 | } 27 | 28 | hr { 29 | height: 0; 30 | color: inherit; 31 | border-top-width: 1px 32 | } 33 | 34 | abbr:where([title]) { 35 | -webkit-text-decoration: underline dotted; 36 | text-decoration: underline dotted 37 | } 38 | 39 | h1,h2,h3,h4,h5,h6 { 40 | font-size: inherit; 41 | font-weight: inherit 42 | } 43 | 44 | a { 45 | color: inherit; 46 | text-decoration: inherit 47 | } 48 | 49 | b,strong { 50 | font-weight: bolder 51 | } 52 | 53 | code,kbd,samp,pre { 54 | font-family: ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace; 55 | font-size: 1em 56 | } 57 | 58 | small { 59 | font-size: 80% 60 | } 61 | 62 | sub,sup { 63 | font-size: 75%; 64 | line-height: 0; 65 | position: relative; 66 | vertical-align: baseline 67 | } 68 | 69 | sub { 70 | bottom: -.25em 71 | } 72 | 73 | sup { 74 | top: -.5em 75 | } 76 | 77 | table { 78 | text-indent: 0; 79 | border-color: inherit; 80 | border-collapse: collapse 81 | } 82 | 83 | button,input,optgroup,select,textarea { 84 | font-family: inherit; 85 | font-feature-settings: inherit; 86 | font-variation-settings: inherit; 87 | font-size: 100%; 88 | font-weight: inherit; 89 | line-height: inherit; 90 | color: inherit; 91 | margin: 0; 92 | padding: 0 93 | } 94 | 95 | button,select { 96 | text-transform: none 97 | } 98 | 99 | button,[type=button],[type=reset],[type=submit] { 100 | -webkit-appearance: button; 101 | background-color: transparent; 102 | background-image: none 103 | } 104 | 105 | :-moz-focusring { 106 | outline: auto 107 | } 108 | 109 | :-moz-ui-invalid { 110 | box-shadow: none 111 | } 112 | 113 | progress { 114 | vertical-align: baseline 115 | } 116 | 117 | ::-webkit-inner-spin-button,::-webkit-outer-spin-button { 118 | height: auto 119 | } 120 | 121 | [type=search] { 122 | -webkit-appearance: textfield; 123 | outline-offset: -2px 124 | } 125 | 126 | ::-webkit-search-decoration { 127 | -webkit-appearance: none 128 | } 129 | 130 | ::-webkit-file-upload-button { 131 | -webkit-appearance: button; 132 | font: inherit 133 | } 134 | 135 | summary { 136 | display: list-item 137 | } 138 | 139 | blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre { 140 | margin: 0 141 | } 142 | 143 | fieldset { 144 | margin: 0; 145 | padding: 0 146 | } 147 | 148 | legend { 149 | padding: 0 150 | } 151 | 152 | ol,ul,menu { 153 | list-style: none; 154 | margin: 0; 155 | padding: 0 156 | } 157 | 158 | dialog { 159 | padding: 0 160 | } 161 | 162 | textarea { 163 | resize: vertical 164 | } 165 | 166 | input::-moz-placeholder,textarea::-moz-placeholder { 167 | opacity: 1; 168 | color: #9ca3af 169 | } 170 | 171 | input::placeholder,textarea::placeholder { 172 | opacity: 1; 173 | color: #9ca3af 174 | } 175 | 176 | button,[role=button] { 177 | cursor: pointer 178 | } 179 | 180 | :disabled { 181 | cursor: default 182 | } 183 | 184 | img,svg,video,canvas,audio,iframe,embed,object { 185 | display: block; 186 | vertical-align: middle 187 | } 188 | 189 | img,video { 190 | max-width: 100%; 191 | height: auto 192 | } 193 | 194 | [hidden] { 195 | display: none 196 | } 197 | 198 | *,:before,:after { 199 | --tw-border-spacing-x: 0; 200 | --tw-border-spacing-y: 0; 201 | --tw-translate-x: 0; 202 | --tw-translate-y: 0; 203 | --tw-rotate: 0; 204 | --tw-skew-x: 0; 205 | --tw-skew-y: 0; 206 | --tw-scale-x: 1; 207 | --tw-scale-y: 1; 208 | --tw-pan-x: ; 209 | --tw-pan-y: ; 210 | --tw-pinch-zoom: ; 211 | --tw-scroll-snap-strictness: proximity; 212 | --tw-gradient-from-position: ; 213 | --tw-gradient-via-position: ; 214 | --tw-gradient-to-position: ; 215 | --tw-ordinal: ; 216 | --tw-slashed-zero: ; 217 | --tw-numeric-figure: ; 218 | --tw-numeric-spacing: ; 219 | --tw-numeric-fraction: ; 220 | --tw-ring-inset: ; 221 | --tw-ring-offset-width: 0px; 222 | --tw-ring-offset-color: #fff; 223 | --tw-ring-color: rgb(59 130 246 / .5); 224 | --tw-ring-offset-shadow: 0 0 #0000; 225 | --tw-ring-shadow: 0 0 #0000; 226 | --tw-shadow: 0 0 #0000; 227 | --tw-shadow-colored: 0 0 #0000; 228 | --tw-blur: ; 229 | --tw-brightness: ; 230 | --tw-contrast: ; 231 | --tw-grayscale: ; 232 | --tw-hue-rotate: ; 233 | --tw-invert: ; 234 | --tw-saturate: ; 235 | --tw-sepia: ; 236 | --tw-drop-shadow: ; 237 | --tw-backdrop-blur: ; 238 | --tw-backdrop-brightness: ; 239 | --tw-backdrop-contrast: ; 240 | --tw-backdrop-grayscale: ; 241 | --tw-backdrop-hue-rotate: ; 242 | --tw-backdrop-invert: ; 243 | --tw-backdrop-opacity: ; 244 | --tw-backdrop-saturate: ; 245 | --tw-backdrop-sepia: 246 | } 247 | 248 | ::backdrop { 249 | --tw-border-spacing-x: 0; 250 | --tw-border-spacing-y: 0; 251 | --tw-translate-x: 0; 252 | --tw-translate-y: 0; 253 | --tw-rotate: 0; 254 | --tw-skew-x: 0; 255 | --tw-skew-y: 0; 256 | --tw-scale-x: 1; 257 | --tw-scale-y: 1; 258 | --tw-pan-x: ; 259 | --tw-pan-y: ; 260 | --tw-pinch-zoom: ; 261 | --tw-scroll-snap-strictness: proximity; 262 | --tw-gradient-from-position: ; 263 | --tw-gradient-via-position: ; 264 | --tw-gradient-to-position: ; 265 | --tw-ordinal: ; 266 | --tw-slashed-zero: ; 267 | --tw-numeric-figure: ; 268 | --tw-numeric-spacing: ; 269 | --tw-numeric-fraction: ; 270 | --tw-ring-inset: ; 271 | --tw-ring-offset-width: 0px; 272 | --tw-ring-offset-color: #fff; 273 | --tw-ring-color: rgb(59 130 246 / .5); 274 | --tw-ring-offset-shadow: 0 0 #0000; 275 | --tw-ring-shadow: 0 0 #0000; 276 | --tw-shadow: 0 0 #0000; 277 | --tw-shadow-colored: 0 0 #0000; 278 | --tw-blur: ; 279 | --tw-brightness: ; 280 | --tw-contrast: ; 281 | --tw-grayscale: ; 282 | --tw-hue-rotate: ; 283 | --tw-invert: ; 284 | --tw-saturate: ; 285 | --tw-sepia: ; 286 | --tw-drop-shadow: ; 287 | --tw-backdrop-blur: ; 288 | --tw-backdrop-brightness: ; 289 | --tw-backdrop-contrast: ; 290 | --tw-backdrop-grayscale: ; 291 | --tw-backdrop-hue-rotate: ; 292 | --tw-backdrop-invert: ; 293 | --tw-backdrop-opacity: ; 294 | --tw-backdrop-saturate: ; 295 | --tw-backdrop-sepia: 296 | } 297 | 298 | .prose { 299 | color: var(--tw-prose-body); 300 | max-width: 65ch 301 | } 302 | 303 | .prose :where(p):not(:where([class~=not-prose],[class~=not-prose] *)) { 304 | margin-top: 1.25em; 305 | margin-bottom: 1.25em 306 | } 307 | 308 | .prose :where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)) { 309 | color: var(--tw-prose-lead); 310 | font-size: 1.25em; 311 | line-height: 1.6; 312 | margin-top: 1.2em; 313 | margin-bottom: 1.2em 314 | } 315 | 316 | .prose :where(a):not(:where([class~=not-prose],[class~=not-prose] *)) { 317 | color: var(--tw-prose-links); 318 | text-decoration: underline; 319 | font-weight: 500 320 | } 321 | 322 | .prose :where(strong):not(:where([class~=not-prose],[class~=not-prose] *)) { 323 | color: var(--tw-prose-bold); 324 | font-weight: 600 325 | } 326 | 327 | .prose :where(a strong):not(:where([class~=not-prose],[class~=not-prose] *)) { 328 | color: inherit 329 | } 330 | 331 | .prose :where(blockquote strong):not(:where([class~=not-prose],[class~=not-prose] *)) { 332 | color: inherit 333 | } 334 | 335 | .prose :where(thead th strong):not(:where([class~=not-prose],[class~=not-prose] *)) { 336 | color: inherit 337 | } 338 | 339 | .prose :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)) { 340 | list-style-type: decimal; 341 | margin-top: 1.25em; 342 | margin-bottom: 1.25em; 343 | padding-left: 1.625em 344 | } 345 | 346 | .prose :where(ol[type=A]):not(:where([class~=not-prose],[class~=not-prose] *)) { 347 | list-style-type: upper-alpha 348 | } 349 | 350 | .prose :where(ol[type=a]):not(:where([class~=not-prose],[class~=not-prose] *)) { 351 | list-style-type: lower-alpha 352 | } 353 | 354 | .prose :where(ol[type=A s]):not(:where([class~=not-prose],[class~=not-prose] *)) { 355 | list-style-type: upper-alpha 356 | } 357 | 358 | .prose :where(ol[type=a s]):not(:where([class~=not-prose],[class~=not-prose] *)) { 359 | list-style-type: lower-alpha 360 | } 361 | 362 | .prose :where(ol[type=I]):not(:where([class~=not-prose],[class~=not-prose] *)) { 363 | list-style-type: upper-roman 364 | } 365 | 366 | .prose :where(ol[type=i]):not(:where([class~=not-prose],[class~=not-prose] *)) { 367 | list-style-type: lower-roman 368 | } 369 | 370 | .prose :where(ol[type=I s]):not(:where([class~=not-prose],[class~=not-prose] *)) { 371 | list-style-type: upper-roman 372 | } 373 | 374 | .prose :where(ol[type=i s]):not(:where([class~=not-prose],[class~=not-prose] *)) { 375 | list-style-type: lower-roman 376 | } 377 | 378 | .prose :where(ol[type="1"]):not(:where([class~=not-prose],[class~=not-prose] *)) { 379 | list-style-type: decimal 380 | } 381 | 382 | .prose :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)) { 383 | list-style-type: disc; 384 | margin-top: 1.25em; 385 | margin-bottom: 1.25em; 386 | padding-left: 1.625em 387 | } 388 | 389 | .prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker { 390 | font-weight: 400; 391 | color: var(--tw-prose-counters) 392 | } 393 | 394 | .prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker { 395 | color: var(--tw-prose-bullets) 396 | } 397 | 398 | .prose :where(dt):not(:where([class~=not-prose],[class~=not-prose] *)) { 399 | color: var(--tw-prose-headings); 400 | font-weight: 600; 401 | margin-top: 1.25em 402 | } 403 | 404 | .prose :where(hr):not(:where([class~=not-prose],[class~=not-prose] *)) { 405 | border-color: var(--tw-prose-hr); 406 | border-top-width: 1px; 407 | margin-top: 3em; 408 | margin-bottom: 3em 409 | } 410 | 411 | .prose :where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)) { 412 | font-weight: 500; 413 | font-style: italic; 414 | color: var(--tw-prose-quotes); 415 | border-left-width: .25rem; 416 | border-left-color: var(--tw-prose-quote-borders); 417 | quotes: "“""”""‘""’"; 418 | margin-top: 1.6em; 419 | margin-bottom: 1.6em; 420 | padding-left: 1em 421 | } 422 | 423 | .prose :where(blockquote p:first-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):before { 424 | content: open-quote 425 | } 426 | 427 | .prose :where(blockquote p:last-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):after { 428 | content: close-quote 429 | } 430 | 431 | .prose :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)) { 432 | color: var(--tw-prose-headings); 433 | font-weight: 800; 434 | font-size: 2.25em; 435 | margin-top: 0; 436 | margin-bottom: .8888889em; 437 | line-height: 1.1111111 438 | } 439 | 440 | .prose :where(h1 strong):not(:where([class~=not-prose],[class~=not-prose] *)) { 441 | font-weight: 900; 442 | color: inherit 443 | } 444 | 445 | .prose :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)) { 446 | color: var(--tw-prose-headings); 447 | font-weight: 700; 448 | font-size: 1.5em; 449 | margin-top: 2em; 450 | margin-bottom: 1em; 451 | line-height: 1.3333333 452 | } 453 | 454 | .prose :where(h2 strong):not(:where([class~=not-prose],[class~=not-prose] *)) { 455 | font-weight: 800; 456 | color: inherit 457 | } 458 | 459 | .prose :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)) { 460 | color: var(--tw-prose-headings); 461 | font-weight: 600; 462 | font-size: 1.25em; 463 | margin-top: 1.6em; 464 | margin-bottom: .6em; 465 | line-height: 1.6 466 | } 467 | 468 | .prose :where(h3 strong):not(:where([class~=not-prose],[class~=not-prose] *)) { 469 | font-weight: 700; 470 | color: inherit 471 | } 472 | 473 | .prose :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)) { 474 | color: var(--tw-prose-headings); 475 | font-weight: 600; 476 | margin-top: 1.5em; 477 | margin-bottom: .5em; 478 | line-height: 1.5 479 | } 480 | 481 | .prose :where(h4 strong):not(:where([class~=not-prose],[class~=not-prose] *)) { 482 | font-weight: 700; 483 | color: inherit 484 | } 485 | 486 | .prose :where(img):not(:where([class~=not-prose],[class~=not-prose] *)) { 487 | margin-top: 2em; 488 | margin-bottom: 2em 489 | } 490 | 491 | .prose :where(picture):not(:where([class~=not-prose],[class~=not-prose] *)) { 492 | display: block; 493 | margin-top: 2em; 494 | margin-bottom: 2em 495 | } 496 | 497 | .prose :where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)) { 498 | font-weight: 500; 499 | font-family: inherit; 500 | color: var(--tw-prose-kbd); 501 | box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%),0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%); 502 | font-size: .875em; 503 | border-radius: .3125rem; 504 | padding: .1875em .375em 505 | } 506 | 507 | .prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)) { 508 | color: var(--tw-prose-code); 509 | font-weight: 600; 510 | font-size: .875em 511 | } 512 | 513 | .prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):before { 514 | content: "`" 515 | } 516 | 517 | .prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):after { 518 | content: "`" 519 | } 520 | 521 | .prose :where(a code):not(:where([class~=not-prose],[class~=not-prose] *)) { 522 | color: inherit 523 | } 524 | 525 | .prose :where(h1 code):not(:where([class~=not-prose],[class~=not-prose] *)) { 526 | color: inherit 527 | } 528 | 529 | .prose :where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)) { 530 | color: inherit; 531 | font-size: .875em 532 | } 533 | 534 | .prose :where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)) { 535 | color: inherit; 536 | font-size: .9em 537 | } 538 | 539 | .prose :where(h4 code):not(:where([class~=not-prose],[class~=not-prose] *)) { 540 | color: inherit 541 | } 542 | 543 | .prose :where(blockquote code):not(:where([class~=not-prose],[class~=not-prose] *)) { 544 | color: inherit 545 | } 546 | 547 | .prose :where(thead th code):not(:where([class~=not-prose],[class~=not-prose] *)) { 548 | color: inherit 549 | } 550 | 551 | .prose :where(pre):not(:where([class~=not-prose],[class~=not-prose] *)) { 552 | color: var(--tw-prose-pre-code); 553 | background-color: var(--tw-prose-pre-bg); 554 | overflow-x: auto; 555 | font-weight: 400; 556 | font-size: .875em; 557 | line-height: 1.7142857; 558 | margin-top: 1.7142857em; 559 | margin-bottom: 1.7142857em; 560 | border-radius: .375rem; 561 | padding: .8571429em 1.1428571em 562 | } 563 | 564 | .prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)) { 565 | background-color: transparent; 566 | border-width: 0; 567 | border-radius: 0; 568 | padding: 0; 569 | font-weight: inherit; 570 | color: inherit; 571 | font-size: inherit; 572 | font-family: inherit; 573 | line-height: inherit 574 | } 575 | 576 | .prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):before { 577 | content: none 578 | } 579 | 580 | .prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):after { 581 | content: none 582 | } 583 | 584 | .prose :where(table):not(:where([class~=not-prose],[class~=not-prose] *)) { 585 | width: 100%; 586 | table-layout: auto; 587 | text-align: left; 588 | margin-top: 2em; 589 | margin-bottom: 2em; 590 | font-size: .875em; 591 | line-height: 1.7142857 592 | } 593 | 594 | .prose :where(thead):not(:where([class~=not-prose],[class~=not-prose] *)) { 595 | border-bottom-width: 1px; 596 | border-bottom-color: var(--tw-prose-th-borders) 597 | } 598 | 599 | .prose :where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)) { 600 | color: var(--tw-prose-headings); 601 | font-weight: 600; 602 | vertical-align: bottom; 603 | padding-right: .5714286em; 604 | padding-bottom: .5714286em; 605 | padding-left: .5714286em 606 | } 607 | 608 | .prose :where(tbody tr):not(:where([class~=not-prose],[class~=not-prose] *)) { 609 | border-bottom-width: 1px; 610 | border-bottom-color: var(--tw-prose-td-borders) 611 | } 612 | 613 | .prose :where(tbody tr:last-child):not(:where([class~=not-prose],[class~=not-prose] *)) { 614 | border-bottom-width: 0 615 | } 616 | 617 | .prose :where(tbody td):not(:where([class~=not-prose],[class~=not-prose] *)) { 618 | vertical-align: baseline 619 | } 620 | 621 | .prose :where(tfoot):not(:where([class~=not-prose],[class~=not-prose] *)) { 622 | border-top-width: 1px; 623 | border-top-color: var(--tw-prose-th-borders) 624 | } 625 | 626 | .prose :where(tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)) { 627 | vertical-align: top 628 | } 629 | 630 | .prose :where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)) { 631 | margin-top: 0; 632 | margin-bottom: 0 633 | } 634 | 635 | .prose :where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)) { 636 | color: var(--tw-prose-captions); 637 | font-size: .875em; 638 | line-height: 1.4285714; 639 | margin-top: .8571429em 640 | } 641 | 642 | .prose { 643 | --tw-prose-body: #374151; 644 | --tw-prose-headings: #111827; 645 | --tw-prose-lead: #4b5563; 646 | --tw-prose-links: #111827; 647 | --tw-prose-bold: #111827; 648 | --tw-prose-counters: #6b7280; 649 | --tw-prose-bullets: #d1d5db; 650 | --tw-prose-hr: #e5e7eb; 651 | --tw-prose-quotes: #111827; 652 | --tw-prose-quote-borders: #e5e7eb; 653 | --tw-prose-captions: #6b7280; 654 | --tw-prose-kbd: #111827; 655 | --tw-prose-kbd-shadows: 17 24 39; 656 | --tw-prose-code: #111827; 657 | --tw-prose-pre-code: #e5e7eb; 658 | --tw-prose-pre-bg: #1f2937; 659 | --tw-prose-th-borders: #d1d5db; 660 | --tw-prose-td-borders: #e5e7eb; 661 | --tw-prose-invert-body: #d1d5db; 662 | --tw-prose-invert-headings: #fff; 663 | --tw-prose-invert-lead: #9ca3af; 664 | --tw-prose-invert-links: #fff; 665 | --tw-prose-invert-bold: #fff; 666 | --tw-prose-invert-counters: #9ca3af; 667 | --tw-prose-invert-bullets: #4b5563; 668 | --tw-prose-invert-hr: #374151; 669 | --tw-prose-invert-quotes: #f3f4f6; 670 | --tw-prose-invert-quote-borders: #374151; 671 | --tw-prose-invert-captions: #9ca3af; 672 | --tw-prose-invert-kbd: #fff; 673 | --tw-prose-invert-kbd-shadows: 255 255 255; 674 | --tw-prose-invert-code: #fff; 675 | --tw-prose-invert-pre-code: #d1d5db; 676 | --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%); 677 | --tw-prose-invert-th-borders: #4b5563; 678 | --tw-prose-invert-td-borders: #374151; 679 | font-size: 1rem; 680 | line-height: 1.75 681 | } 682 | 683 | .prose :where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)) { 684 | margin-top: 0; 685 | margin-bottom: 0 686 | } 687 | 688 | .prose :where(video):not(:where([class~=not-prose],[class~=not-prose] *)) { 689 | margin-top: 2em; 690 | margin-bottom: 2em 691 | } 692 | 693 | .prose :where(li):not(:where([class~=not-prose],[class~=not-prose] *)) { 694 | margin-top: .5em; 695 | margin-bottom: .5em 696 | } 697 | 698 | .prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)) { 699 | padding-left: .375em 700 | } 701 | 702 | .prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)) { 703 | padding-left: .375em 704 | } 705 | 706 | .prose :where(.prose>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)) { 707 | margin-top: .75em; 708 | margin-bottom: .75em 709 | } 710 | 711 | .prose :where(.prose>ul>li>*:first-child):not(:where([class~=not-prose],[class~=not-prose] *)) { 712 | margin-top: 1.25em 713 | } 714 | 715 | .prose :where(.prose>ul>li>*:last-child):not(:where([class~=not-prose],[class~=not-prose] *)) { 716 | margin-bottom: 1.25em 717 | } 718 | 719 | .prose :where(.prose>ol>li>*:first-child):not(:where([class~=not-prose],[class~=not-prose] *)) { 720 | margin-top: 1.25em 721 | } 722 | 723 | .prose :where(.prose>ol>li>*:last-child):not(:where([class~=not-prose],[class~=not-prose] *)) { 724 | margin-bottom: 1.25em 725 | } 726 | 727 | .prose :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)) { 728 | margin-top: .75em; 729 | margin-bottom: .75em 730 | } 731 | 732 | .prose :where(dl):not(:where([class~=not-prose],[class~=not-prose] *)) { 733 | margin-top: 1.25em; 734 | margin-bottom: 1.25em 735 | } 736 | 737 | .prose :where(dd):not(:where([class~=not-prose],[class~=not-prose] *)) { 738 | margin-top: .5em; 739 | padding-left: 1.625em 740 | } 741 | 742 | .prose :where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)) { 743 | margin-top: 0 744 | } 745 | 746 | .prose :where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)) { 747 | margin-top: 0 748 | } 749 | 750 | .prose :where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)) { 751 | margin-top: 0 752 | } 753 | 754 | .prose :where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)) { 755 | margin-top: 0 756 | } 757 | 758 | .prose :where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)) { 759 | padding-left: 0 760 | } 761 | 762 | .prose :where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)) { 763 | padding-right: 0 764 | } 765 | 766 | .prose :where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)) { 767 | padding: .5714286em 768 | } 769 | 770 | .prose :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)) { 771 | padding-left: 0 772 | } 773 | 774 | .prose :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)) { 775 | padding-right: 0 776 | } 777 | 778 | .prose :where(figure):not(:where([class~=not-prose],[class~=not-prose] *)) { 779 | margin-top: 2em; 780 | margin-bottom: 2em 781 | } 782 | 783 | .prose :where(.prose>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)) { 784 | margin-top: 0 785 | } 786 | 787 | .prose :where(.prose>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)) { 788 | margin-bottom: 0 789 | } 790 | 791 | .prose-lg { 792 | font-size: 1.125rem; 793 | line-height: 1.7777778 794 | } 795 | 796 | .prose-lg :where(p):not(:where([class~=not-prose],[class~=not-prose] *)) { 797 | margin-top: 1.3333333em; 798 | margin-bottom: 1.3333333em 799 | } 800 | 801 | .prose-lg :where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)) { 802 | font-size: 1.2222222em; 803 | line-height: 1.4545455; 804 | margin-top: 1.0909091em; 805 | margin-bottom: 1.0909091em 806 | } 807 | 808 | .prose-lg :where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)) { 809 | margin-top: 1.6666667em; 810 | margin-bottom: 1.6666667em; 811 | padding-left: 1em 812 | } 813 | 814 | .prose-lg :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)) { 815 | font-size: 2.6666667em; 816 | margin-top: 0; 817 | margin-bottom: .8333333em; 818 | line-height: 1 819 | } 820 | 821 | .prose-lg :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)) { 822 | font-size: 1.6666667em; 823 | margin-top: 1.8666667em; 824 | margin-bottom: 1.0666667em; 825 | line-height: 1.3333333 826 | } 827 | 828 | .prose-lg :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)) { 829 | font-size: 1.3333333em; 830 | margin-top: 1.6666667em; 831 | margin-bottom: .6666667em; 832 | line-height: 1.5 833 | } 834 | 835 | .prose-lg :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)) { 836 | margin-top: 1.7777778em; 837 | margin-bottom: .4444444em; 838 | line-height: 1.5555556 839 | } 840 | 841 | .prose-lg :where(img):not(:where([class~=not-prose],[class~=not-prose] *)) { 842 | margin-top: 1.7777778em; 843 | margin-bottom: 1.7777778em 844 | } 845 | 846 | .prose-lg :where(picture):not(:where([class~=not-prose],[class~=not-prose] *)) { 847 | margin-top: 1.7777778em; 848 | margin-bottom: 1.7777778em 849 | } 850 | 851 | .prose-lg :where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)) { 852 | margin-top: 0; 853 | margin-bottom: 0 854 | } 855 | 856 | .prose-lg :where(video):not(:where([class~=not-prose],[class~=not-prose] *)) { 857 | margin-top: 1.7777778em; 858 | margin-bottom: 1.7777778em 859 | } 860 | 861 | .prose-lg :where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)) { 862 | font-size: .8888889em; 863 | border-radius: .3125rem; 864 | padding: .2222222em .4444444em 865 | } 866 | 867 | .prose-lg :where(code):not(:where([class~=not-prose],[class~=not-prose] *)) { 868 | font-size: .8888889em 869 | } 870 | 871 | .prose-lg :where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)) { 872 | font-size: .8666667em 873 | } 874 | 875 | .prose-lg :where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)) { 876 | font-size: .875em 877 | } 878 | 879 | .prose-lg :where(pre):not(:where([class~=not-prose],[class~=not-prose] *)) { 880 | font-size: .8888889em; 881 | line-height: 1.75; 882 | margin-top: 2em; 883 | margin-bottom: 2em; 884 | border-radius: .375rem; 885 | padding: 1em 1.5em 886 | } 887 | 888 | .prose-lg :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)) { 889 | margin-top: 1.3333333em; 890 | margin-bottom: 1.3333333em; 891 | padding-left: 1.5555556em 892 | } 893 | 894 | .prose-lg :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)) { 895 | margin-top: 1.3333333em; 896 | margin-bottom: 1.3333333em; 897 | padding-left: 1.5555556em 898 | } 899 | 900 | .prose-lg :where(li):not(:where([class~=not-prose],[class~=not-prose] *)) { 901 | margin-top: .6666667em; 902 | margin-bottom: .6666667em 903 | } 904 | 905 | .prose-lg :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)) { 906 | padding-left: .4444444em 907 | } 908 | 909 | .prose-lg :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)) { 910 | padding-left: .4444444em 911 | } 912 | 913 | .prose-lg :where(.prose-lg>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)) { 914 | margin-top: .8888889em; 915 | margin-bottom: .8888889em 916 | } 917 | 918 | .prose-lg :where(.prose-lg>ul>li>*:first-child):not(:where([class~=not-prose],[class~=not-prose] *)) { 919 | margin-top: 1.3333333em 920 | } 921 | 922 | .prose-lg :where(.prose-lg>ul>li>*:last-child):not(:where([class~=not-prose],[class~=not-prose] *)) { 923 | margin-bottom: 1.3333333em 924 | } 925 | 926 | .prose-lg :where(.prose-lg>ol>li>*:first-child):not(:where([class~=not-prose],[class~=not-prose] *)) { 927 | margin-top: 1.3333333em 928 | } 929 | 930 | .prose-lg :where(.prose-lg>ol>li>*:last-child):not(:where([class~=not-prose],[class~=not-prose] *)) { 931 | margin-bottom: 1.3333333em 932 | } 933 | 934 | .prose-lg :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)) { 935 | margin-top: .8888889em; 936 | margin-bottom: .8888889em 937 | } 938 | 939 | .prose-lg :where(dl):not(:where([class~=not-prose],[class~=not-prose] *)) { 940 | margin-top: 1.3333333em; 941 | margin-bottom: 1.3333333em 942 | } 943 | 944 | .prose-lg :where(dt):not(:where([class~=not-prose],[class~=not-prose] *)) { 945 | margin-top: 1.3333333em 946 | } 947 | 948 | .prose-lg :where(dd):not(:where([class~=not-prose],[class~=not-prose] *)) { 949 | margin-top: .6666667em; 950 | padding-left: 1.5555556em 951 | } 952 | 953 | .prose-lg :where(hr):not(:where([class~=not-prose],[class~=not-prose] *)) { 954 | margin-top: 3.1111111em; 955 | margin-bottom: 3.1111111em 956 | } 957 | 958 | .prose-lg :where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)) { 959 | margin-top: 0 960 | } 961 | 962 | .prose-lg :where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)) { 963 | margin-top: 0 964 | } 965 | 966 | .prose-lg :where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)) { 967 | margin-top: 0 968 | } 969 | 970 | .prose-lg :where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)) { 971 | margin-top: 0 972 | } 973 | 974 | .prose-lg :where(table):not(:where([class~=not-prose],[class~=not-prose] *)) { 975 | font-size: .8888889em; 976 | line-height: 1.5 977 | } 978 | 979 | .prose-lg :where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)) { 980 | padding-right: .75em; 981 | padding-bottom: .75em; 982 | padding-left: .75em 983 | } 984 | 985 | .prose-lg :where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)) { 986 | padding-left: 0 987 | } 988 | 989 | .prose-lg :where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)) { 990 | padding-right: 0 991 | } 992 | 993 | .prose-lg :where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)) { 994 | padding: .75em 995 | } 996 | 997 | .prose-lg :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)) { 998 | padding-left: 0 999 | } 1000 | 1001 | .prose-lg :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)) { 1002 | padding-right: 0 1003 | } 1004 | 1005 | .prose-lg :where(figure):not(:where([class~=not-prose],[class~=not-prose] *)) { 1006 | margin-top: 1.7777778em; 1007 | margin-bottom: 1.7777778em 1008 | } 1009 | 1010 | .prose-lg :where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)) { 1011 | margin-top: 0; 1012 | margin-bottom: 0 1013 | } 1014 | 1015 | .prose-lg :where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)) { 1016 | font-size: .8888889em; 1017 | line-height: 1.5; 1018 | margin-top: 1em 1019 | } 1020 | 1021 | .prose-lg :where(.prose-lg>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)) { 1022 | margin-top: 0 1023 | } 1024 | 1025 | .prose-lg :where(.prose-lg>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)) { 1026 | margin-bottom: 0 1027 | } 1028 | 1029 | .sr-only { 1030 | position: absolute; 1031 | width: 1px; 1032 | height: 1px; 1033 | padding: 0; 1034 | margin: -1px; 1035 | overflow: hidden; 1036 | clip: rect(0,0,0,0); 1037 | white-space: nowrap; 1038 | border-width: 0 1039 | } 1040 | 1041 | .visible { 1042 | visibility: visible 1043 | } 1044 | 1045 | .static { 1046 | position: static 1047 | } 1048 | 1049 | .relative { 1050 | position: relative 1051 | } 1052 | 1053 | .z-10 { 1054 | z-index: 10 1055 | } 1056 | 1057 | .order-first { 1058 | order: -9999 1059 | } 1060 | 1061 | .mx-auto { 1062 | margin-left: auto; 1063 | margin-right: auto 1064 | } 1065 | 1066 | .my-20 { 1067 | margin-top: 5rem; 1068 | margin-bottom: 5rem 1069 | } 1070 | 1071 | .my-5 { 1072 | margin-top: 1.25rem; 1073 | margin-bottom: 1.25rem 1074 | } 1075 | 1076 | .mb-3 { 1077 | margin-bottom: .75rem 1078 | } 1079 | 1080 | .mb-5 { 1081 | margin-bottom: 1.25rem 1082 | } 1083 | 1084 | .ml-1 { 1085 | margin-left: .25rem 1086 | } 1087 | 1088 | .mt-0 { 1089 | margin-top: 0 1090 | } 1091 | 1092 | .mt-0\.5 { 1093 | margin-top: .125rem 1094 | } 1095 | 1096 | .mt-1 { 1097 | margin-top: .25rem 1098 | } 1099 | 1100 | .mt-10 { 1101 | margin-top: 2.5rem 1102 | } 1103 | 1104 | .mt-12 { 1105 | margin-top: 3rem 1106 | } 1107 | 1108 | .mt-14 { 1109 | margin-top: 3.5rem 1110 | } 1111 | 1112 | .mt-16 { 1113 | margin-top: 4rem 1114 | } 1115 | 1116 | .mt-2 { 1117 | margin-top: .5rem 1118 | } 1119 | 1120 | .mt-20 { 1121 | margin-top: 5rem 1122 | } 1123 | 1124 | .mt-24 { 1125 | margin-top: 6rem 1126 | } 1127 | 1128 | .mt-3 { 1129 | margin-top: .75rem 1130 | } 1131 | 1132 | .mt-4 { 1133 | margin-top: 1rem 1134 | } 1135 | 1136 | .mt-5 { 1137 | margin-top: 1.25rem 1138 | } 1139 | 1140 | .mt-6 { 1141 | margin-top: 1.5rem 1142 | } 1143 | 1144 | .mt-8 { 1145 | margin-top: 2rem 1146 | } 1147 | 1148 | .block { 1149 | display: block 1150 | } 1151 | 1152 | .flex { 1153 | display: flex 1154 | } 1155 | 1156 | .grid { 1157 | display: grid 1158 | } 1159 | 1160 | .hidden { 1161 | display: none 1162 | } 1163 | 1164 | .aspect-square { 1165 | aspect-ratio: 1 / 1 1166 | } 1167 | 1168 | .h-3 { 1169 | height: .75rem 1170 | } 1171 | 1172 | .h-36 { 1173 | height: 9rem 1174 | } 1175 | 1176 | .h-4 { 1177 | height: 1rem 1178 | } 1179 | 1180 | .h-5 { 1181 | height: 1.25rem 1182 | } 1183 | 1184 | .h-6 { 1185 | height: 1.5rem 1186 | } 1187 | 1188 | .h-8 { 1189 | height: 2rem 1190 | } 1191 | 1192 | .min-h-\[calc\(100vh-16rem\)\] { 1193 | min-height: calc(100vh - 16rem) 1194 | } 1195 | 1196 | .w-3 { 1197 | width: .75rem 1198 | } 1199 | 1200 | .w-4 { 1201 | width: 1rem 1202 | } 1203 | 1204 | .w-5 { 1205 | width: 1.25rem 1206 | } 1207 | 1208 | .w-6 { 1209 | width: 1.5rem 1210 | } 1211 | 1212 | .w-8 { 1213 | width: 2rem 1214 | } 1215 | 1216 | .w-full { 1217 | width: 100% 1218 | } 1219 | 1220 | .max-w-3xl { 1221 | max-width: 48rem 1222 | } 1223 | 1224 | .max-w-4xl { 1225 | max-width: 56rem 1226 | } 1227 | 1228 | .max-w-5xl { 1229 | max-width: 64rem 1230 | } 1231 | 1232 | .max-w-\[735px\] { 1233 | max-width: 735px 1234 | } 1235 | 1236 | .max-w-screen-lg { 1237 | max-width: 1024px 1238 | } 1239 | 1240 | .max-w-screen-xl { 1241 | max-width: 1280px 1242 | } 1243 | 1244 | .max-w-xl { 1245 | max-width: 36rem 1246 | } 1247 | 1248 | .shrink-0 { 1249 | flex-shrink: 0 1250 | } 1251 | 1252 | .origin-top-left { 1253 | transform-origin: top left 1254 | } 1255 | 1256 | .origin-top-right { 1257 | transform-origin: top right 1258 | } 1259 | 1260 | .transform { 1261 | transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) 1262 | } 1263 | 1264 | @keyframes pulse { 1265 | 50% { 1266 | opacity: .5 1267 | } 1268 | } 1269 | 1270 | .animate-pulse { 1271 | animation: pulse 2s cubic-bezier(.4,0,.6,1) infinite 1272 | } 1273 | 1274 | .flex-col { 1275 | flex-direction: column 1276 | } 1277 | 1278 | .flex-wrap { 1279 | flex-wrap: wrap 1280 | } 1281 | 1282 | .place-items-center { 1283 | place-items: center 1284 | } 1285 | 1286 | .items-start { 1287 | align-items: flex-start 1288 | } 1289 | 1290 | .items-center { 1291 | align-items: center 1292 | } 1293 | 1294 | .justify-center { 1295 | justify-content: center 1296 | } 1297 | 1298 | .justify-between { 1299 | justify-content: space-between 1300 | } 1301 | 1302 | .gap-1 { 1303 | gap: .25rem 1304 | } 1305 | 1306 | .gap-10 { 1307 | gap: 2.5rem 1308 | } 1309 | 1310 | .gap-16 { 1311 | gap: 4rem 1312 | } 1313 | 1314 | .gap-2 { 1315 | gap: .5rem 1316 | } 1317 | 1318 | .gap-3 { 1319 | gap: .75rem 1320 | } 1321 | 1322 | .gap-4 { 1323 | gap: 1rem 1324 | } 1325 | 1326 | .gap-5 { 1327 | gap: 1.25rem 1328 | } 1329 | 1330 | .gap-8 { 1331 | gap: 2rem 1332 | } 1333 | 1334 | .gap-y-4 { 1335 | row-gap: 1rem 1336 | } 1337 | 1338 | .space-x-2>:not([hidden])~:not([hidden]) { 1339 | --tw-space-x-reverse: 0; 1340 | margin-right: calc(.5rem * var(--tw-space-x-reverse)); 1341 | margin-left: calc(.5rem * calc(1 - var(--tw-space-x-reverse))) 1342 | } 1343 | 1344 | .rounded { 1345 | border-radius: .25rem 1346 | } 1347 | 1348 | .rounded-full { 1349 | border-radius: 9999px 1350 | } 1351 | 1352 | .rounded-lg { 1353 | border-radius: .5rem 1354 | } 1355 | 1356 | .rounded-md { 1357 | border-radius: .375rem 1358 | } 1359 | 1360 | .border-2 { 1361 | border-width: 2px 1362 | } 1363 | 1364 | .border-\[\#D8DEE9\] { 1365 | --tw-border-opacity: 1; 1366 | border-color: rgb(216 222 233 / var(--tw-border-opacity)) 1367 | } 1368 | 1369 | .border-black { 1370 | --tw-border-opacity: 1; 1371 | border-color: rgb(0 0 0 / var(--tw-border-opacity)) 1372 | } 1373 | 1374 | .border-gray-300 { 1375 | --tw-border-opacity: 1; 1376 | border-color: rgb(209 213 219 / var(--tw-border-opacity)) 1377 | } 1378 | 1379 | .border-transparent { 1380 | border-color: transparent 1381 | } 1382 | 1383 | .border-opacity-50 { 1384 | --tw-border-opacity: .5 1385 | } 1386 | 1387 | .bg-black { 1388 | --tw-bg-opacity: 1; 1389 | background-color: rgb(0 0 0 / var(--tw-bg-opacity)) 1390 | } 1391 | 1392 | .bg-gray-100 { 1393 | --tw-bg-opacity: 1; 1394 | background-color: rgb(243 244 246 / var(--tw-bg-opacity)) 1395 | } 1396 | 1397 | .bg-indigo-600 { 1398 | --tw-bg-opacity: 1; 1399 | background-color: rgb(79 70 229 / var(--tw-bg-opacity)) 1400 | } 1401 | 1402 | .bg-white { 1403 | --tw-bg-opacity: 1; 1404 | background-color: rgb(255 255 255 / var(--tw-bg-opacity)) 1405 | } 1406 | 1407 | .object-cover { 1408 | -o-object-fit: cover; 1409 | object-fit: cover 1410 | } 1411 | 1412 | .object-center { 1413 | -o-object-position: center; 1414 | object-position: center 1415 | } 1416 | 1417 | .p-2 { 1418 | padding: .5rem 1419 | } 1420 | 1421 | .p-8 { 1422 | padding: 2rem 1423 | } 1424 | 1425 | .px-2 { 1426 | padding-left: .5rem; 1427 | padding-right: .5rem 1428 | } 1429 | 1430 | .px-3 { 1431 | padding-left: .75rem; 1432 | padding-right: .75rem 1433 | } 1434 | 1435 | .px-4 { 1436 | padding-left: 1rem; 1437 | padding-right: 1rem 1438 | } 1439 | 1440 | .px-5 { 1441 | padding-left: 1.25rem; 1442 | padding-right: 1.25rem 1443 | } 1444 | 1445 | .px-6 { 1446 | padding-left: 1.5rem; 1447 | padding-right: 1.5rem 1448 | } 1449 | 1450 | .py-0 { 1451 | padding-top: 0; 1452 | padding-bottom: 0 1453 | } 1454 | 1455 | .py-0\.5 { 1456 | padding-top: .125rem; 1457 | padding-bottom: .125rem 1458 | } 1459 | 1460 | .py-1 { 1461 | padding-top: .25rem; 1462 | padding-bottom: .25rem 1463 | } 1464 | 1465 | .py-2 { 1466 | padding-top: .5rem; 1467 | padding-bottom: .5rem 1468 | } 1469 | 1470 | .py-2\.5 { 1471 | padding-top: .625rem; 1472 | padding-bottom: .625rem 1473 | } 1474 | 1475 | .py-3 { 1476 | padding-top: .75rem; 1477 | padding-bottom: .75rem 1478 | } 1479 | 1480 | .py-5 { 1481 | padding-top: 1.25rem; 1482 | padding-bottom: 1.25rem 1483 | } 1484 | 1485 | .py-6 { 1486 | padding-top: 1.5rem; 1487 | padding-bottom: 1.5rem 1488 | } 1489 | 1490 | .pb-8 { 1491 | padding-bottom: 2rem 1492 | } 1493 | 1494 | .pt-16 { 1495 | padding-top: 4rem 1496 | } 1497 | 1498 | .text-left { 1499 | text-align: left 1500 | } 1501 | 1502 | .text-center { 1503 | text-align: center 1504 | } 1505 | 1506 | .text-2xl { 1507 | font-size: 1.5rem; 1508 | line-height: 2rem 1509 | } 1510 | 1511 | .text-3xl { 1512 | font-size: 1.875rem; 1513 | line-height: 2.25rem 1514 | } 1515 | 1516 | .text-4xl { 1517 | font-size: 2.25rem; 1518 | line-height: 2.5rem 1519 | } 1520 | 1521 | .text-5xl { 1522 | font-size: 3rem; 1523 | line-height: 1 1524 | } 1525 | 1526 | .text-\[10px\] { 1527 | font-size: 10px 1528 | } 1529 | 1530 | .text-lg { 1531 | font-size: 1.125rem; 1532 | line-height: 1.75rem 1533 | } 1534 | 1535 | .text-sm { 1536 | font-size: .875rem; 1537 | line-height: 1.25rem 1538 | } 1539 | 1540 | .text-xl { 1541 | font-size: 1.25rem; 1542 | line-height: 1.75rem 1543 | } 1544 | 1545 | .text-xs { 1546 | font-size: .75rem; 1547 | line-height: 1rem 1548 | } 1549 | 1550 | .font-bold { 1551 | font-weight: 700 1552 | } 1553 | 1554 | .font-medium { 1555 | font-weight: 500 1556 | } 1557 | 1558 | .font-semibold { 1559 | font-weight: 600 1560 | } 1561 | 1562 | .uppercase { 1563 | text-transform: uppercase 1564 | } 1565 | 1566 | .leading-relaxed { 1567 | line-height: 1.625 1568 | } 1569 | 1570 | .leading-snug { 1571 | line-height: 1.375 1572 | } 1573 | 1574 | .tracking-tight { 1575 | letter-spacing: -.025em 1576 | } 1577 | 1578 | .tracking-wider { 1579 | letter-spacing: .05em 1580 | } 1581 | 1582 | .text-black { 1583 | --tw-text-opacity: 1; 1584 | color: rgb(0 0 0 / var(--tw-text-opacity)) 1585 | } 1586 | 1587 | .text-blue-400 { 1588 | --tw-text-opacity: 1; 1589 | color: rgb(96 165 250 / var(--tw-text-opacity)) 1590 | } 1591 | 1592 | .text-gray-400 { 1593 | --tw-text-opacity: 1; 1594 | color: rgb(156 163 175 / var(--tw-text-opacity)) 1595 | } 1596 | 1597 | .text-gray-500 { 1598 | --tw-text-opacity: 1; 1599 | color: rgb(107 114 128 / var(--tw-text-opacity)) 1600 | } 1601 | 1602 | .text-gray-600 { 1603 | --tw-text-opacity: 1; 1604 | color: rgb(75 85 99 / var(--tw-text-opacity)) 1605 | } 1606 | 1607 | .text-gray-800 { 1608 | --tw-text-opacity: 1; 1609 | color: rgb(31 41 55 / var(--tw-text-opacity)) 1610 | } 1611 | 1612 | .text-green-500 { 1613 | --tw-text-opacity: 1; 1614 | color: rgb(34 197 94 / var(--tw-text-opacity)) 1615 | } 1616 | 1617 | .text-red-400 { 1618 | --tw-text-opacity: 1; 1619 | color: rgb(248 113 113 / var(--tw-text-opacity)) 1620 | } 1621 | 1622 | .text-red-500 { 1623 | --tw-text-opacity: 1; 1624 | color: rgb(239 68 68 / var(--tw-text-opacity)) 1625 | } 1626 | 1627 | .text-slate-400 { 1628 | --tw-text-opacity: 1; 1629 | color: rgb(148 163 184 / var(--tw-text-opacity)) 1630 | } 1631 | 1632 | .text-slate-500 { 1633 | --tw-text-opacity: 1; 1634 | color: rgb(100 116 139 / var(--tw-text-opacity)) 1635 | } 1636 | 1637 | .text-slate-600 { 1638 | --tw-text-opacity: 1; 1639 | color: rgb(71 85 105 / var(--tw-text-opacity)) 1640 | } 1641 | 1642 | .text-slate-800 { 1643 | --tw-text-opacity: 1; 1644 | color: rgb(30 41 59 / var(--tw-text-opacity)) 1645 | } 1646 | 1647 | .text-white { 1648 | --tw-text-opacity: 1; 1649 | color: rgb(255 255 255 / var(--tw-text-opacity)) 1650 | } 1651 | 1652 | .line-through { 1653 | text-decoration-line: line-through 1654 | } 1655 | 1656 | .outline-none { 1657 | outline: 2px solid transparent; 1658 | outline-offset: 2px 1659 | } 1660 | 1661 | .outline { 1662 | outline-style: solid 1663 | } 1664 | 1665 | .ring-gray-100 { 1666 | --tw-ring-opacity: 1; 1667 | --tw-ring-color: rgb(243 244 246 / var(--tw-ring-opacity)) 1668 | } 1669 | 1670 | .ring-gray-200 { 1671 | --tw-ring-opacity: 1; 1672 | --tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity)) 1673 | } 1674 | 1675 | .ring-offset-2 { 1676 | --tw-ring-offset-width: 2px 1677 | } 1678 | 1679 | .transition { 1680 | transition-property: color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter; 1681 | transition-property: color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter; 1682 | transition-property: color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter; 1683 | transition-timing-function: cubic-bezier(.4,0,.2,1); 1684 | transition-duration: .15s 1685 | } 1686 | 1687 | .placeholder\:text-gray-800::-moz-placeholder { 1688 | --tw-text-opacity: 1; 1689 | color: rgb(31 41 55 / var(--tw-text-opacity)) 1690 | } 1691 | 1692 | .placeholder\:text-gray-800::placeholder { 1693 | --tw-text-opacity: 1; 1694 | color: rgb(31 41 55 / var(--tw-text-opacity)) 1695 | } 1696 | 1697 | .hover\:bg-black:hover { 1698 | --tw-bg-opacity: 1; 1699 | background-color: rgb(0 0 0 / var(--tw-bg-opacity)) 1700 | } 1701 | 1702 | .hover\:bg-gray-100:hover { 1703 | --tw-bg-opacity: 1; 1704 | background-color: rgb(243 244 246 / var(--tw-bg-opacity)) 1705 | } 1706 | 1707 | .hover\:bg-gray-200:hover { 1708 | --tw-bg-opacity: 1; 1709 | background-color: rgb(229 231 235 / var(--tw-bg-opacity)) 1710 | } 1711 | 1712 | .hover\:bg-gray-800:hover { 1713 | --tw-bg-opacity: 1; 1714 | background-color: rgb(31 41 55 / var(--tw-bg-opacity)) 1715 | } 1716 | 1717 | .hover\:bg-slate-900:hover { 1718 | --tw-bg-opacity: 1; 1719 | background-color: rgb(15 23 42 / var(--tw-bg-opacity)) 1720 | } 1721 | 1722 | .hover\:text-gray-900:hover { 1723 | --tw-text-opacity: 1; 1724 | color: rgb(17 24 39 / var(--tw-text-opacity)) 1725 | } 1726 | 1727 | .hover\:text-white:hover { 1728 | --tw-text-opacity: 1; 1729 | color: rgb(255 255 255 / var(--tw-text-opacity)) 1730 | } 1731 | 1732 | .hover\:underline:hover { 1733 | text-decoration-line: underline 1734 | } 1735 | 1736 | .focus\:border-gray-600:focus { 1737 | --tw-border-opacity: 1; 1738 | border-color: rgb(75 85 99 / var(--tw-border-opacity)) 1739 | } 1740 | 1741 | .focus\:ring-4:focus { 1742 | --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); 1743 | --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); 1744 | box-shadow: var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000) 1745 | } 1746 | 1747 | .focus-visible\:ring-2:focus-visible { 1748 | --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); 1749 | --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); 1750 | box-shadow: var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000) 1751 | } 1752 | 1753 | .group[open] .group-open\:rotate-180 { 1754 | --tw-rotate: 180deg; 1755 | transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) 1756 | } 1757 | 1758 | .group:hover .group-hover\:-translate-y-1 { 1759 | --tw-translate-y: -.25rem; 1760 | transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) 1761 | } 1762 | 1763 | .group:hover .group-hover\:shadow-xl { 1764 | --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1); 1765 | --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color); 1766 | box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow) 1767 | } 1768 | 1769 | @media (min-width: 640px) { 1770 | .sm\:grid-cols-2 { 1771 | grid-template-columns:repeat(2,minmax(0,1fr)) 1772 | } 1773 | 1774 | .sm\:flex-row { 1775 | flex-direction: row 1776 | } 1777 | } 1778 | 1779 | @media (min-width: 768px) { 1780 | .md\:order-1 { 1781 | order:1 1782 | } 1783 | 1784 | .md\:mt-0 { 1785 | margin-top: 0 1786 | } 1787 | 1788 | .md\:block { 1789 | display: block 1790 | } 1791 | 1792 | .md\:h-12 { 1793 | height: 3rem 1794 | } 1795 | 1796 | .md\:h-14 { 1797 | height: 3.5rem 1798 | } 1799 | 1800 | .md\:h-16 { 1801 | height: 4rem 1802 | } 1803 | 1804 | .md\:w-auto { 1805 | width: auto 1806 | } 1807 | 1808 | .md\:grid-cols-2 { 1809 | grid-template-columns: repeat(2,minmax(0,1fr)) 1810 | } 1811 | 1812 | .md\:grid-cols-3 { 1813 | grid-template-columns: repeat(3,minmax(0,1fr)) 1814 | } 1815 | 1816 | .md\:flex-nowrap { 1817 | flex-wrap: nowrap 1818 | } 1819 | 1820 | .md\:gap-10 { 1821 | gap: 2.5rem 1822 | } 1823 | 1824 | .md\:gap-20 { 1825 | gap: 5rem 1826 | } 1827 | 1828 | .md\:px-20 { 1829 | padding-left: 5rem; 1830 | padding-right: 5rem 1831 | } 1832 | 1833 | .md\:py-20 { 1834 | padding-top: 5rem; 1835 | padding-bottom: 5rem 1836 | } 1837 | 1838 | .md\:pb-24 { 1839 | padding-bottom: 6rem 1840 | } 1841 | 1842 | .md\:pt-12 { 1843 | padding-top: 3rem 1844 | } 1845 | 1846 | .md\:text-2xl { 1847 | font-size: 1.5rem; 1848 | line-height: 2rem 1849 | } 1850 | 1851 | .md\:text-4xl { 1852 | font-size: 2.25rem; 1853 | line-height: 2.5rem 1854 | } 1855 | 1856 | .md\:text-6xl { 1857 | font-size: 3.75rem; 1858 | line-height: 1 1859 | } 1860 | 1861 | .md\:text-xl { 1862 | font-size: 1.25rem; 1863 | line-height: 1.75rem 1864 | } 1865 | } 1866 | 1867 | @media (min-width: 1024px) { 1868 | .lg\:absolute { 1869 | position:absolute 1870 | } 1871 | 1872 | .lg\:left-0 { 1873 | left: 0 1874 | } 1875 | 1876 | .lg\:right-0 { 1877 | right: 0 1878 | } 1879 | 1880 | .lg\:order-none { 1881 | order: 0 1882 | } 1883 | 1884 | .lg\:mt-0 { 1885 | margin-top: 0 1886 | } 1887 | 1888 | .lg\:flex { 1889 | display: flex 1890 | } 1891 | 1892 | .lg\:hidden { 1893 | display: none 1894 | } 1895 | 1896 | .lg\:w-48 { 1897 | width: 12rem 1898 | } 1899 | 1900 | .lg\:w-auto { 1901 | width: auto 1902 | } 1903 | 1904 | .lg\:grid-cols-2 { 1905 | grid-template-columns: repeat(2,minmax(0,1fr)) 1906 | } 1907 | 1908 | .lg\:flex-row { 1909 | flex-direction: row 1910 | } 1911 | 1912 | .lg\:gap-3 { 1913 | gap: .75rem 1914 | } 1915 | 1916 | .lg\:rounded-md { 1917 | border-radius: .375rem 1918 | } 1919 | 1920 | .lg\:border { 1921 | border-width: 1px 1922 | } 1923 | 1924 | .lg\:bg-white { 1925 | --tw-bg-opacity: 1; 1926 | background-color: rgb(255 255 255 / var(--tw-bg-opacity)) 1927 | } 1928 | 1929 | .lg\:px-3 { 1930 | padding-left: .75rem; 1931 | padding-right: .75rem 1932 | } 1933 | 1934 | .lg\:py-2 { 1935 | padding-top: .5rem; 1936 | padding-bottom: .5rem 1937 | } 1938 | 1939 | .lg\:text-5xl { 1940 | font-size: 3rem; 1941 | line-height: 1 1942 | } 1943 | 1944 | .lg\:text-6xl { 1945 | font-size: 3.75rem; 1946 | line-height: 1 1947 | } 1948 | 1949 | .lg\:leading-tight { 1950 | line-height: 1.25 1951 | } 1952 | 1953 | .lg\:tracking-tight { 1954 | letter-spacing: -.025em 1955 | } 1956 | 1957 | .lg\:shadow { 1958 | --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1); 1959 | --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color); 1960 | box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow) 1961 | } 1962 | } 1963 | 1964 | .bg-blue-500 { 1965 | --bg-opacity: 1!important; 1966 | background-color: #4299e1!important; 1967 | background-color: rgba(66,153,225,var(--bg-opacity))!important 1968 | } 1969 | 1970 | @media (min-width: 1280px) { 1971 | .xl\:text-7xl { 1972 | font-size:4.5rem; 1973 | line-height: 1 1974 | } 1975 | 1976 | .xl\:tracking-tighter { 1977 | letter-spacing: -.05em 1978 | } 1979 | } 1980 | 1981 | @font-face { 1982 | font-family: Inter Variable; 1983 | font-style: normal; 1984 | font-display: swap; 1985 | font-weight: 100 900; 1986 | src: url(font.woff2) format("woff2-variations"); 1987 | unicode-range: U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F 1988 | } 1989 | 1990 | @font-face { 1991 | font-family: Inter Variable; 1992 | font-style: normal; 1993 | font-display: swap; 1994 | font-weight: 100 900; 1995 | src: url(font.woff2) format("woff2-variations"); 1996 | unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116 1997 | } 1998 | 1999 | @font-face { 2000 | font-family: Inter Variable; 2001 | font-style: normal; 2002 | font-display: swap; 2003 | font-weight: 100 900; 2004 | src: url(font.woff2) format("woff2-variations"); 2005 | unicode-range: U+1F00-1FFF 2006 | } 2007 | 2008 | @font-face { 2009 | font-family: Inter Variable; 2010 | font-style: normal; 2011 | font-display: swap; 2012 | font-weight: 100 900; 2013 | src: url(font.woff2) format("woff2-variations"); 2014 | unicode-range: U+0370-03FF 2015 | } 2016 | 2017 | @font-face { 2018 | font-family: Inter Variable; 2019 | font-style: normal; 2020 | font-display: swap; 2021 | font-weight: 100 900; 2022 | src: url(font.woff2) format("woff2-variations"); 2023 | unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB 2024 | } 2025 | 2026 | @font-face { 2027 | font-family: Inter Variable; 2028 | font-style: normal; 2029 | font-display: swap; 2030 | font-weight: 100 900; 2031 | src: url(font.woff2) format("woff2-variations"); 2032 | unicode-range: U+0100-02AF,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF 2033 | } 2034 | 2035 | @font-face { 2036 | font-family: Inter Variable; 2037 | font-style: normal; 2038 | font-display: swap; 2039 | font-weight: 100 900; 2040 | src: url(font.woff2) format("woff2-variations"); 2041 | unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD 2042 | } 2043 | 2044 | img { 2045 | content-visibility: auto 2046 | } 2047 | -------------------------------------------------------------------------------- /astro-project/adapter/index.mjs: -------------------------------------------------------------------------------- 1 | /** @returns {import('astro').AstroIntegration} */ 2 | export default function() { 3 | return { 4 | name: 'my-adapter', 5 | hooks: { 6 | 'astro:config:done': ({ setAdapter }) => { 7 | setAdapter({ 8 | name: 'my-adapter', 9 | serverEntrypoint: new URL('./server-entrypoint.mjs', import.meta.url).pathname, 10 | supportedAstroFeatures: { 11 | serverOutput: 'stable' 12 | }, 13 | exports: ['manifest'] 14 | }); 15 | }, 16 | 'astro:build:setup': ({ vite, target }) => { 17 | if(target === 'server') { 18 | vite.build.rollupOptions.input.push('src/all.ts'); 19 | } 20 | } 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /astro-project/adapter/server-entrypoint.mjs: -------------------------------------------------------------------------------- 1 | export function createExports(manifest) { 2 | return { manifest }; 3 | } -------------------------------------------------------------------------------- /astro-project/astro.config.mjs: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'astro/config'; 2 | import adapter from './adapter/index.mjs'; 3 | import react from '@astrojs/react'; 4 | 5 | export default defineConfig({ 6 | output: 'server', 7 | adapter: adapter(), 8 | integrations: [react()] 9 | }); -------------------------------------------------------------------------------- /astro-project/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "astro-project", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "adapter.js", 6 | "scripts": { 7 | "build": "astro build" 8 | }, 9 | "keywords": [], 10 | "author": "", 11 | "license": "ISC", 12 | "dependencies": { 13 | "astro": "^0.0.0-container-20240524172326" 14 | }, 15 | "devDependencies": { 16 | "@astrojs/react": "^3.3.4" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /astro-project/render.mjs: -------------------------------------------------------------------------------- 1 | import * as components from './dist/server/all.mjs'; 2 | import { renderers } from './dist/server/renderers.mjs'; 3 | import { manifest } from './dist/server/entry.mjs'; 4 | import { experimental_AstroContainer as AstroContainer } from 'astro/container'; 5 | 6 | const container = await AstroContainer.create({ 7 | manifest, 8 | renderers, 9 | resolve(s) { 10 | const found = manifest.entryModules[s]; 11 | if(found) { 12 | return `/astro-project/dist/client/${found}`; 13 | } 14 | return found; 15 | } 16 | }); 17 | 18 | const html = await container.renderToString(components.ReactWrapper); 19 | console.log(html); -------------------------------------------------------------------------------- /astro-project/src/all.ts: -------------------------------------------------------------------------------- 1 | export { 2 | default as Hello 3 | } from './components/Hello.astro'; 4 | export { 5 | default as ReactWrapper 6 | } from './components/ReactWrapper.astro'; -------------------------------------------------------------------------------- /astro-project/src/components/Counter.jsx: -------------------------------------------------------------------------------- 1 | import { useState } from 'react'; 2 | 3 | export default function({ initialCount }) { 4 | const [count, setCount] = useState(initialCount || 0); 5 | return ( 6 |
7 |

Counter

8 |

Count: {count}

9 | 12 |
13 | ) 14 | } -------------------------------------------------------------------------------- /astro-project/src/components/Hello.astro: -------------------------------------------------------------------------------- 1 |

Hello from Astro

-------------------------------------------------------------------------------- /astro-project/src/components/ReactWrapper.astro: -------------------------------------------------------------------------------- 1 | --- 2 | import Counter from './Counter.jsx'; 3 | --- 4 | 5 | 6 | -------------------------------------------------------------------------------- /astro-project/src/env.d.ts: -------------------------------------------------------------------------------- 1 | /// -------------------------------------------------------------------------------- /astro-project/src/pages/index.astro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | PHP Example App 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 |
28 |
PHPship 30 |
42 |
43 | 82 | 87 |
88 |
89 |
90 | 93 |
94 | 105 |
106 |

107 | Marketing website done with PHP 108 |

109 |

110 | Astroship is a starter template for startups, marketing websites & landing 111 | pages. Built with Astro.build and TailwindCSS. You can quickly 112 | create any website with this starter. 113 |

114 | 132 |
133 |
134 |
135 |

136 | Everything you need to start a website 137 |

138 |

139 | Astro comes batteries included. It takes the best parts of state-of-the-art 140 | tools and adds its own innovations. 141 |

142 |
143 |
144 |
145 |
147 | 149 |
150 |
151 |

Bring Your Own Framework

152 |

Build your site using React, Svelte, Vue, Preact, web 153 | components, or just plain ol' HTML + JavaScript.

154 |
155 |
156 |
157 |
159 | 161 |
162 |
163 |

100% Static HTML, No JS

164 |

Astro renders your entire page to static HTML, 165 | removing all JavaScript from your final build by default.

166 |
167 |
168 |
169 |
171 | 173 | 175 |
176 |
177 |

On-Demand Components

178 |

Need some JS? Astro can automatically hydrate 179 | interactive components when they become visible on the page.

180 |
181 |
182 |
183 |
185 | 187 |
188 |
189 |

Broad Integration

190 |

Astro supports TypeScript, Scoped CSS, CSS Modules, 191 | Sass, Tailwind, Markdown, MDX, and any other npm packages.

192 |
193 |
194 |
195 |
197 | 199 | 200 |
201 |
202 |

SEO Enabled

203 |

Automatic sitemaps, RSS feeds, pagination and 204 | collections take the pain out of SEO and syndication. It just works!

205 |
206 |
207 |
208 |
210 | 212 |
213 |
214 |

Community

215 |

Astro is an open source project powered by hundreds 216 | of contributors making thousands of individual contributions.

217 |
218 |
219 |
220 |
221 |

Works with your technologies

222 |
224 | 226 | 227 | 229 | 230 | 232 | 233 | 235 | 236 | 237 | 238 | 240 |
241 |
242 |
244 |

245 | Build faster websites. 246 |

247 |

248 | Pull content from anywhere and serve it fast with Astro's next-gen island 249 | architecture. 250 |

251 | 254 |
255 |
256 | 270 | 271 | 272 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # Astro inside of PHP 2 | 3 | Install inside of the `astro-project` folder. 4 | 5 | ```shell 6 | cd astro-project 7 | npm install 8 | ``` 9 | 10 | Then build the Astro project. 11 | 12 | ```shell 13 | npm run build 14 | ``` 15 | 16 | Now run the PHP server (from the root) 17 | 18 | ```shell 19 | php -S localhost:8000 20 | ``` 21 | 22 | ## Credits 23 | 24 | Template from [Astroship](https://github.com/surjithctly/astroship), changed to be used in a PHP app instead. --------------------------------------------------------------------------------