Skip to content

Latest commit

 

History

History
88 lines (60 loc) · 2.53 KB

README.md

File metadata and controls

88 lines (60 loc) · 2.53 KB

World Building Site

Homepage

I considered different color patterns for the site's theme, including:

  • Cyberpunk Theme
    Cyberpunk Theme

  • Minimalist Theme
    Minimalist Theme

  • Medieval Theme
    Medieval Theme

After consideration, the Medieval Theme has been chosen, since it suits the whole worldbuilding thing.


Header Section

  • Main Title: W🌏rld Builder

  • A "Contact Us" button that redirects to the Contact Us page.


Main Content Areas

  1. Introduction Section

    • Main Heading: Start Building Your World Today
    • An image created using Krita.
  2. Tool Sections (3 main tools):
    Each tool section features:

    • A descriptive heading.
    • A paragraph description of the tool's purpose.
    • A "Get Started" button linking to the respective tool.
    • A preview image (e.g., the Character Card Maker preview was contributed by a friend).

    The tools are:

  3. Reviews Section

    • Section Title: What People Are Saying
      (A longer title adds emphasis.)
    • Includes three review cards:
      • Two genuine reviews.
      • An unfortunately fake one from Wes Anderson.

Footer

  • Copyright Notice
    Clearly states ownership and copyright for the site.

  • A link to Other Sites for related or additional resources.


Setting Up the Name Generator

To make the Name Generator work, you'll need to:

  1. Download SQLite:
    Download and install SQLite from sqlite.org.

  2. Install PHP SQLite Extension:
    Ensure that the PHP SQLite extension is installed and enabled on your server.

  3. Configure Database Path:
    In the nameGenerator.php file, set the path to your SQLite database like so:

    <?php
    // Path to your SQLite database file
    $db_path = 'path_to_your_database.sqlite';
    
    // Connect to SQLite database
    $db = new SQLite3($db_path);
    ?>

Sqlite is much more efficient compared to the bloat MySql


Acknowledgments

Thanks to Janelle Shane's DnD Characters GitHub Repository for inspiring character names used in this project.